Var3D / var3dframe

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

var3dframe

Build Status

A game framework base on LibGDX 1.9.8

一个基于Libgdx的轻量级游戏框架,使Libgdx非常方便的支持中文以及任意字符,更方便使用的UI控件以及界面对话框的管理,低耦合的特性使你可以混合使用原生Libgdx的API 当前支持的Libgdx版本为1.9.8

加入QQ群获得技术支持

Getting Started

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"
}

Authors & Contributors

Game case based on var3dframe

License

TBC

Acknowledgments

LibGDX

About


Languages

Language:Java 99.3%Language:Objective-C 0.7%