4

嗨,我必须旋转 Texture2D,但我不知道为什么。它就像一张照片,我需要将它旋转 180°,因为它在头上并且应该是正确的。

问题是,我需要在使用之前做spriteBatch.Draw,这可能吗?

4

2 回答 2

4

纹理将旋转 180 度。

    protected override void Draw(GameTime gameTime)
    {
        spriteBatch.Begin(SpriteSortMode.Deferred, BlendState.AlphaBlend, SamplerState.LinearWrap, DepthStencilState.None, RasterizerState.CullCounterClockwise, null);
        spriteBatch.Draw(texture, Position, null, Color.White, (float)Math.PI, new Vector2(texture.Width, texture.Height), 1, SpriteEffects.None, 0);
        spriteBatch.End();
        base.Draw(gameTime);
    }

你也可以使用 SpriteEffects 垂直翻转纹理:

    protected override void Draw(GameTime gameTime)
    {
        GraphicsDevice.Clear(Color.CornflowerBlue);
        spriteBatch.Begin(SpriteSortMode.Deferred, BlendState.AlphaBlend, SamplerState.LinearWrap, DepthStencilState.None, RasterizerState.CullCounterClockwise, null);
        spriteBatch.Draw(texture, Position, null, Color.White, 0, Vector2.Zero, 1, SpriteEffects.FlipVertically, 0);
        spriteBatch.End();
        base.Draw(gameTime);
    }
于 2012-04-12T20:50:37.577 回答
3

Draw方法有一个重载,可以让您旋转纹理。我不确定我是否理解为什么在绘制纹理之前需要旋转纹理。缩放和旋转通常在绘图期间完成。正如 Joel 指出的那样,旋转是使用弧度完成的,您还需要注意原点,即您旋转的点。

于 2012-04-10T16:16:01.117 回答