我正在 Windows Phone 8 上学习 Monogame。在我Sprite
的类(精灵对象的基类)中,我有以下方法
public void Draw(SpriteBatch batch)
{
batch.Draw(texture, Position, color);
DrawSprite(batch);
}
protected virtual void DrawSprite(SpriteBatch batch)
{
}
我有一Car
门派生自班级的Sprite
班级。在里面我有
protected override void DrawSprite(SpriteBatch batch)
{
batch.Draw(texture, Position, null, Color.White, MathHelper.ToRadians(rotateAngle),
new Vector2(texture.Width / 2, texture.Height / 2), 1.0f,
SpriteEffects.None, 0.0f);
}
然后在我的MainGame
课堂上,我使用以下方法绘制屏幕
protected override void DrawScreen(SpriteBatch batch, DisplayOrientation displayOrientation)
{
road.Draw(batch);
car.Draw(batch);
hazards.Draw(batch);
scoreText.Draw(batch);
}
问题是汽车精灵被绘制了两次。如果我删除
batch.Draw(texture, Position, color);
从类的Draw
方法来看Sprite
,其他一些精灵没有像按钮背景那样绘制。
我想我的问题是如何仅在存在但不存在时调用覆盖方法
batch.Draw(texture, Position, color);
在
public void Draw(SpriteBatch batch)
{
batch.Draw(texture, Position, color);
DrawSprite(batch);
}