- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
(Android)所以我是 LibGdx 的新手,我正在尝试编写这个 chrome 恐龙迷你游戏。我想在用户触摸屏幕左侧时执行操作 1,并在触摸屏幕右侧时执行操作 2,我该怎么做?
最佳答案
您可以通过在游戏循环中的某个位置使用以下代码来检测被触摸的一侧:
if (Gdx.input.isTouched()) {
if (Gdx.input.getX() > Gdx.graphics.getWidth() / 2){
//touched right
} else {
//touchde left
}
}
关于java - LibGdx 2半屏 "buttons",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46549859/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!