LibGDX-检查当前是否在Android /台式机上


16

我正在使用LibGDX和flixel-android构建桌面/ Android游戏。感觉应该有一种检查您当前是否在Android设备,桌面等设备上运行的方法,但是我在任何地方都找不到它。我是否应该将其从各个发射器中传下来?当然LibGDX可以告诉我吗?

Answers:



7

Magd的代码可能只在一个阶段起作用,但不适用于我的GDX版本,或者肯定不是我的实现。我必须将其更改如下:

switch(Gdx.app.getType()) {
       case Android:
           // android specific code
           TouchPadController.createTouchPad();
       case Desktop:
           // desktop specific code
       case WebGL:
           /// HTML5 specific code

}


这是什么版本?最近的每晚?
ThorinII
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.