我是游戏开发的新手。使用and-engine开发game.am创建精灵(例如: - 箭击中敌人)当用户触摸屏幕时使用场景触摸监听器。使用移动修改器移动箭头。但是屏幕上没有显示箭头。当我在log-cat节目中触摸屏幕时
记录Cat错误
10-29 18:36:41.913: V/AndEngine(25704): org.andengine.input.touch.TouchEvent$TouchEventPool<TouchEvent> was exhausted, with 0 item not yet recycled. Allocated 1 more.
10-29 18:36:41.913: V/AndEngine(25704): org.andengine.util.adt.pool.PoolUpdateHandler$1<TouchEventRunnablePoolItem> was exhausted, with 0 item not yet recycled. Allocated 1 more.
代码
private void shootProjectile(final float pX, final float pY) {
int offX = (int) (pX - player.getX());
int offY = (int) (pY - player.getY());
if (offX <= 0)
return;
final Sprite projectile;
// position the projectile on the player
projectile = new Sprite(player.getX(), player.getY(),
arrow.deepCopy(),mEngine.getVertexBufferObjectManager());
mainScene.attachChild(projectile);
int realX = (int) (camera.getWidth() + projectile.getWidth() / 2.0f);
float ratio = (float) offY / (float) offX;
int realY = (int) ((realX * ratio) + projectile.getY());
int offRealX = (int) (realX - projectile.getX());
int offRealY = (int) (realY - projectile.getY());
float length = (float) Math.sqrt((offRealX * offRealX) + (offRealY * offRealY));
float velocity = 480.0f / 1.0f; // 480 pixels / 1 sec
float realMoveDuration = length / velocity;
// defining a move modifier from the projectile's position to the
// calculated one
MoveModifier mod = new MoveModifier(realMoveDuration,projectile.getX(), realX, projectile.getY(), realY);
projectile.registerEntityModifier(mod);
/*projectile.registerEntityModifier(modifier);
PhysicsHandler handler = new PhysicsHandler(projectile);
projectile.registerUpdateHandler(handler);
handler.setVelocity(realX,realY);*/
projectilesToBeAdded.add(projectile);
// plays a shooting sound
}
从上面的代码将箭头精灵移动到触摸屏幕的方向。但是我无法显示箭头精灵。任何人都知道请帮我解决这个问题。
答案 0 :(得分:1)
两件有用的事情:
这些错误消息是警告级别消息,而不是错误。它们是发动机的正确操作。当触摸池中没有触摸时,它会在创建新触摸时发出警告。在池中进行一些触摸后,它们会被回收,因此只有当所需的触摸次数超过池中的数量时,才会显示消息。摘要:不要担心这一点。
当你创建你的精灵时,我发现TextureRegion参数“Arrow.deepCopy()”有些奇怪。我的猜测是该方法不返回有效的TextureRegion,因此不显示您的箭头。由于任意数量的精灵都可以使用相同的textureRegion,我建议您只使用箭头纹理的标准参考。
问题的范围将是两件事之一:没有纹理,或箭头被放置在屏幕外。所以首先将精灵放在你知道的地方,没有修饰符。如果你看到你的质地很好。 如果纹理很好,那么修改器中的位置很差,所以再次检查数学并重试。