c# - 使用 XNA 绘制带纹理的四边形

标签 c# xna

我正在尝试使用位于 here 的示例渲染带纹理的四边形.

我可以成功渲染四边形,但纹理信息似乎丢失了。不过,四边形采用底层纹理的颜色。

我已经检查了明显的问题(“渲染四边形的 BasicEffect 是否将 TextureEnabled 属性设置为 true?”)但无法立即发现问题。

代码如下:

public class Quad
{
    public VertexPositionNormalTexture[] Vertices;
    public Vector3 Origin;
    public Vector3 Up;
    public Vector3 Normal;
    public Vector3 Left;
    public Vector3 UpperLeft;
    public Vector3 UpperRight;
    public Vector3 LowerLeft;
    public Vector3 LowerRight;
    public int[] Indexes;


    public Quad(Vector3 origin, Vector3 normal, Vector3 up,
         float width, float height)
    {
        this.Vertices = new VertexPositionNormalTexture[4];
        this.Indexes = new int[6];
        this.Origin = origin;
        this.Normal = normal;
        this.Up = up;

        // Calculate the quad corners
        this.Left = Vector3.Cross(normal, this.Up);
        Vector3 uppercenter = (this.Up * height / 2) + origin;
        this.UpperLeft = uppercenter + (this.Left * width / 2);
        this.UpperRight = uppercenter - (this.Left * width / 2);
        this.LowerLeft = this.UpperLeft - (this.Up * height);
        this.LowerRight = this.UpperRight - (this.Up * height);

        this.FillVertices();
    }

    private void FillVertices()
    {
        Vector2 textureUpperLeft = new Vector2(0.0f, 0.0f);
        Vector2 textureUpperRight = new Vector2(1.0f, 0.0f);
        Vector2 textureLowerLeft = new Vector2(0.0f, 1.0f);
        Vector2 textureLowerRight = new Vector2(1.0f, 1.0f);

        for (int i = 0; i < this.Vertices.Length; i++)
        {
            this.Vertices[i].Normal = this.Normal;
        }

        this.Vertices[0].Position = this.LowerLeft;
        this.Vertices[0].TextureCoordinate = textureLowerLeft;
        this.Vertices[1].Position = this.UpperLeft;
        this.Vertices[1].TextureCoordinate = textureUpperLeft;
        this.Vertices[2].Position = this.LowerRight;
        this.Vertices[2].TextureCoordinate = textureLowerRight;
        this.Vertices[3].Position = this.UpperRight;
        this.Vertices[3].TextureCoordinate = textureUpperRight;

        this.Indexes[0] = 0;
        this.Indexes[1] = 1;
        this.Indexes[2] = 2;
        this.Indexes[3] = 2;
        this.Indexes[4] = 1;
        this.Indexes[5] = 3;
    }
}

this.quadEffect = new BasicEffect(this.GraphicsDevice, null);
this.quadEffect.AmbientLightColor = new Vector3(0.8f, 0.8f, 0.8f);
this.quadEffect.LightingEnabled = true;
this.quadEffect.World = Matrix.Identity;
this.quadEffect.View = this.View;
this.quadEffect.Projection = this.Projection;
this.quadEffect.TextureEnabled = true;
this.quadEffect.Texture = someTexture;

this.quad = new Quad(Vector3.Zero, Vector3.UnitZ, Vector3.Up, 2, 2);

this.quadVertexDecl = new VertexDeclaration(this.GraphicsDevice, VertexPositionNormalTexture.VertexElements);

public override void Draw(GameTime gameTime)
{
    this.GraphicsDevice.Textures[0] = this.SpriteDictionary["B1S1I800"];
    this.GraphicsDevice.VertexDeclaration = quadVertexDecl;
    quadEffect.Begin();

    foreach (EffectPass pass in quadEffect.CurrentTechnique.Passes)
    {
        pass.Begin();
        GraphicsDevice.DrawUserIndexedPrimitives<VertexPositionNormalTexture>(
             PrimitiveType.TriangleList,
             beamQuad.Vertices, 0, 4,
             beamQuad.Indexes, 0, 2);

        pass.End();
    }

    quadEffect.End();
}

最佳答案

据我所知,这应该可行。我唯一能想到的是,在这段代码中没有,纹理的加载在某处出错了。我也不太明白你所说的四边形具有纹理的底层颜色是什么意思?你有截图给我们吗?

此外,如果确实出现某些情况,例如纹理的非常扭曲的版本,其他 内容的渲染可能会影响四边形的渲染。例如,如果您在图形设备上有另一个顶点声明时绘制四边形,或者如果先前渲染的东西设置了一些奇异的渲染状态,或者如果您在其他东西的绘图代码中绘制四边形。尝试将此代码隔离到新项目或其他项目中,或禁用其他所有内容的呈现。

关于c# - 使用 XNA 绘制带纹理的四边形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1112666/

相关文章:

c# - 如何解析 XML 数据以检索子节点值?

c# - 用于在嵌套范围内查找的最佳数据结构

performance - XNA - 如何更有效地绘制顶点?

XNA Vector2 旋转问题

c# - FlushAction 和 Lazy 属性

c# - Amazon S3 服务器端加密

c# - Win32Exception 参数不正确

c# - XNA - 当前上下文中不存在名称 'ball'

xna - 指向多个渲染目标

XNA 在运行时在 Texture2D 上绘制/绘制