我正在使用XNA的单一游戏实现为Windows商店制作游戏,其中,我正在应用轻弹手势在屏幕上移动对象。
这是我在Update方法中编写的用于轻弹和更新对象的位置和速度的代码
while (TouchPanel.IsGestureAvailable)
{
GestureSample gesture = TouchPanel.ReadGesture();
if (gesture.GestureType == GestureType.Flick)
velocity += gesture.Delta;
if (gesture.GestureType == GestureType.Hold)
position = gesture.Position;
}
if (velocity != Vector2.Zero)
{
float elapsedSeconds = (float)gameTime.ElapsedGameTime.TotalSeconds;
position += velocity * elapsedSeconds;
float newMagnitude = velocity.Length() - DECELERATION * elapsedSeconds;
velocity.Normalize();
velocity *= Math.Max(0, newMagnitude);
}
UpdateSprite(gameTime, ref position, ref velocity);
void UpdateSprite(GameTime gameTime, ref Vector2 spritePosition, ref Vector2 spriteSpeed)
{
// Move the sprite by speed, scaled by elapsed time.
spritePosition += spriteSpeed * (float)gameTime.ElapsedGameTime.TotalSeconds;
int MaxX = GraphicsDevice.Viewport.Width - cat.Width;
int MinX = 0;
int MaxY = 500 - cat.Height;
int MinY = 0;
// Check for bounce.
if (spritePosition.X > MaxX - 10)
{
if (spritePosition.Y <= 200 || spritePosition.Y >= 300)
{
spriteSpeed.X *= -1;
spritePosition.X = MaxX;
}
else
{
PositionCount = 0;
}
}
else if (spritePosition.X < MinX + 10)
{
if (spritePosition.Y <= 200 || spritePosition.Y >= 300)
{
spriteSpeed.X *= -1;
spritePosition.X = MinX;
}
else
{
PositionCount = 0;
}
}
if (spritePosition.Y > MaxY)
{
spriteSpeed.Y *= -1;
spritePosition.Y = MaxY;
}
else if (spritePosition.Y < MinY)
{
spriteSpeed.Y *= -1;
spritePosition.Y = MinY;
}
}
对象的轻弹与此代码完美配合。但我要找的是,当用户轻弹对象时,如果被轻弹的物体与任何其他物体发生碰撞,那么第二个物体也应该移动,就像当被轻弹的撞击者与它们发生碰撞时,移动币的移动方式一样。
我尝试过为碰撞和运动设置逻辑但是徒劳无功。
任何形式的帮助都将受到高度赞赏。
非常感谢。