需求: 游戏中,在开始前经常会用到,ready->go->start game,或者其他情况。 简单的说,就是游戏一些UI展示需要按照步骤执行。 于是乎,为了让逻辑清晰,自己写了简单执行脚本,方便以后的开发。 package?com.o...
分类:
其他好文 时间:
2015-07-16 12:07:17
阅读次数:
140
遇到一个问题,自定义的Actor在使用batch.draw时,其他Actor设置的透明影响到了这个Actor处理方法为在自定义Actor中 draw方法中 绘制前,加入Color color = batch.getColor(); batch.setColor(color.r, col...
分类:
其他好文 时间:
2015-07-12 15:32:15
阅读次数:
132
Game->stagestage之间的相互切换语句((Game) (Gdx.app.getApplicationListener())) .setScreen(new ScreenTwo());对于菜单画面private Skin skin; private Stage stage; ...
分类:
Web程序 时间:
2015-07-06 14:04:51
阅读次数:
198
http://badlogicgames.com/forum/官方论坛,解决问题靠他了http://www.badlogicgames.com/ 作者bolghttp://www.twitter.com/badlogicgames/作者twitterhttp://code.google.com/p....
分类:
其他好文 时间:
2015-07-06 14:04:40
阅读次数:
140
??Box2D官方网站:http://box2d.org/Box2D v2.1.0用户手冊翻译:http://blog.csdn.net/complex_ok/article/category/871440Libgdx使用jni封装了box2d的c++版本号,使得其执行效率比其它同级的物理引擎如jb...
分类:
其他好文 时间:
2015-07-03 20:33:00
阅读次数:
176
实现的思路:缓存池+(Image或者CHActor) + Actions 例:实现星星右中心点向圆形周围扩散,且星星不断的旋转,缩小,到达圆上时消失。 这个需求里面对于单个星星包含的Action有: moveTo 移动 roatateBy 旋转 sc...
分类:
其他好文 时间:
2015-06-18 11:49:42
阅读次数:
173
libgdx assets file not foundSelect Run -> Edit Configurations from the menuIn the "Working Directory:" text box, add "android/assets" to the end of th...
分类:
其他好文 时间:
2015-06-14 18:25:58
阅读次数:
118
./gradlew -v 查看版本./gradlew clean 清理、下载依赖./gradlew build 构建libgdx项目中的gradlewrun: gradlew desktop:run gradlew android:installDebug an...
分类:
其他好文 时间:
2015-06-14 10:42:19
阅读次数:
158
为什么要去封装我们自己的Actor? 答:Actor本身可能无法满足我们的开发需求,或者无法支持各种各样的效果,由此需要在其基础上进行拓展。 下面贴出本人二次封装的CHActor代码,供大家参考: ? 1.CHActor使用了对...
分类:
其他好文 时间:
2015-06-11 19:39:41
阅读次数:
117