2

所以我正在尝试用 2d 精灵制作一个 3d 游戏。在搅拌机中,我创建了一个平面并使用 uv 贴图将其中一个精灵映射到平面上。当我按下 f12 并渲染平面时,会显示精灵。

我确保为平面创建材质,并确保添加纹理以及使用正确的 uv 贴图启用 uv 映射。

我将文件模型导出为 .fbx 文件,并将其与纹理图像一起放在我项目的内容文件夹中。

但是,当我渲染模型而不是显示纹理时,平面是纯黑色的。

这可能是什么原因造成的?我的画是这样的:

public void Draw(Matrix View, Matrix Projection)
{
    // Calculate the base transformation by combining
    // translation, rotation, and scaling
    Matrix baseWorld = Matrix.CreateScale(Scale)
    * Matrix.CreateFromYawPitchRoll(
    Rotation.Y, Rotation.X, Rotation.Z)
    * Matrix.CreateTranslation(Position);

    foreach (ModelMesh mesh in Model.Meshes)
    {
        Matrix localWorld = modelTransforms[mesh.ParentBone.Index]
        * baseWorld;
        foreach (ModelMeshPart meshPart in mesh.MeshParts)
        {
            BasicEffect effect = (BasicEffect)meshPart.Effect;

            effect.World = localWorld;
            effect.View = View;
            effect.Projection = Projection;
            effect.EnableDefaultLighting();
        }
        mesh.Draw();
    }
}
4

1 回答 1

2

我想到了。我的纹理没有显示在我的模型上的原因是因为我没有正确设置 effect.world

我改变了设置世界矩阵的方式并编辑了一些模型类代码。万一其他人想用漂亮的类渲染纹理模型

public class CModel
{
    public Matrix Position { get; set; }
    public Vector3 Rotation { get; set; }
    public Vector3 Scale { get; set; }
    public Model Model { get; private set; }
    private Matrix[] modelTransforms;




  public CModel(Model Model, Vector3 Position)
  {
    this.Model = Model;
    modelTransforms = new Matrix[Model.Bones.Count];
    Model.CopyAbsoluteBoneTransformsTo(modelTransforms);
    this.Position = Matrix.CreateTranslation(Position);

  }

  public void Draw(Matrix viewMatrix, Matrix proMatrix)
  {

    foreach (ModelMesh mesh in Model.Meshes)
    {
        foreach (BasicEffect effect in mesh.Effects)
        {
            effect.EnableDefaultLighting();

            effect.View = viewMatrix;
            effect.Projection = proMatrix;
            effect.World = modelTransforms[mesh.ParentBone.Index] * Position;
        }

        mesh.Draw();
    }
  }

在指定位置绘制模型。如果您想要任何其他效果,您可以轻松地将它们添加到抽奖中。

于 2012-06-13T04:13:33.207 回答