您好,登录后才能下订单哦!
/**
* 定义一个Ball精灵
* @author lin
*
*/
private static class Ball extends AnimatedSprite {
/**移动处理事件*/
private final PhysicsHandler mPhysicsHandler;//一个自动更新实体位置的IUpdateHandler逻辑事务
public Ball(final float pX, final float pY, String pTextureRegion, final VertexBufferObjectManager pVertexBufferObjectManager) {
super(pX, pY, pTextureRegion, pVertexBufferObjectManager);
this.mPhysicsHandler = new PhysicsHandler(this);//实例化事件
this.registerUpdateHandler(this.mPhysicsHandler);//注册事件,注册后才会被执行
this.mPhysicsHandler.setVelocity(DEMO_VELOCITY, DEMO_VELOCITY);//设置X, Y速率
}
//控制精灵永远在屏幕内移动,不会超出屏幕外
@Override
protected void onManagedUpdate(final float pSecondsElapsed) {
if(this.mX < 0) {//ball 精灵x坐标小于0时
this.mPhysicsHandler.setVelocityX(DEMO_VELOCITY);//设置x速率为正,即往右移动
} else if(this.mX + this.getWidth() >= SCENE_WIDTH) {//ball 精灵x坐标大于屏幕右边时,即快移出屏幕右边
this.mPhysicsHandler.setVelocityX(-DEMO_VELOCITY);//设置x速率为负,即往左移动
}
if(this.mY < 0) {//ball 精灵y坐标小于0时
this.mPhysicsHandler.setVelocityY(DEMO_VELOCITY);//设置y速率为正,即往下移动
} else if(this.mY + this.getHeight() >= SCENE_HEIGHT) {//ball 精灵y坐标大于屏幕下边时
this.mPhysicsHandler.setVelocityY(-DEMO_VELOCITY);//设置y速率为负,即往上移动
}
super.onManagedUpdate(pSecondsElapsed);//执行父类的方法
}
}
OGE_Example项目源码
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。