A game framework base on LibGDX 1.9.8
一个基于Libgdx的轻量级游戏框架,使Libgdx非常方便的支持中文以及任意字符,更方便使用的UI控件以及界面对话框的管理,低耦合的特性使你可以混合使用原生Libgdx的API 当前支持的Libgdx版本为1.9.8
Include var3dframe via Gradle
Step 1. Add the JitPack repository to your build file
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add a version to allprojects
allprojects {
ext {
...
var3d = "1.0.1"
...
}
}
Step 3. Add the dependency
- core
dependencies {
compile "com.github.Var3D.var3dframe:core:$var3d"
}
- desktop
dependencies {
compile "com.github.Var3D.var3dframe:desktop:$var3d"
}
- android
dependencies {
compile "com.github.Var3D.var3dframe:android:$var3d"
}
- ios
dependencies {
compile "com.github.Var3D.var3dframe:ios:$var3d"
}
- ios-moe
dependencies {
compile "com.github.Var3D.var3dframe:ios-moe:$var3d"
}
TBC