控制精灵不能完全正常工作

时间:2012-08-28 22:29:16

标签: java android controls andengine

public void onControlChange(final BaseOnScreenControl pBaseOnScreenControl, final float pValueX, final float pValueY) {
            final Body carBody = CityRacerActivity.this.mCarBody;

            final Vector2 velocity = Vector2Pool.obtain(pValueX * 5, pValueY * 5);
            carBody.setLinearVelocity(velocity);
            Vector2Pool.recycle(velocity);

            final float rotationInRad = (float)Math.atan2(-pValueX, pValueY);
            carBody.setTransform(carBody.getWorldCenter(), rotationInRad);

            CityRacerActivity.this.mCar.setRotation(MathUtils.radToDeg(rotationInRad));
        }

所以这部分有效。

OnControlChange以正确的方向移动精灵但是当我放开控制时,它似乎每次都会向上移动车辆。

我正在使用andengine进行安卓。

我的代码基于racergameactivity示例,但这个错误似乎已经存在于示例本身。

1 个答案:

答案 0 :(得分:2)

        public void onControlChange(final BaseOnScreenControl pBaseOnScreenControl, final float pValueX, final float pValueY) {
            final Body carBody = CityRacerActivity.this.mCarBody;

            final float rotationInRad = (float)Math.atan2(-pValueX, pValueY);

            if ((pValueX == 0) && (pValueY == 0))
            {
                    //Don't turn the body/sprite of the car


            }else
            {
                    carBody.setTransform(carBody.getWorldCenter(), rotationInRad);
                    //turn the car body in the direction of movement
                    CityRacerActivity.this.mCar.setRotation(MathUtils.radToDeg(rotationInRad));
            }

            //set the velocity
            final Vector2 velocity = Vector2Pool.obtain(pValueX * 5, pValueY * 5);
            carBody.setLinearVelocity(velocity);
            Vector2Pool.recycle(velocity);
        }

这就像我想要的那样,但我不确定这是否是我应该处理它的方式。