C# XNA 3D 模型未呈现

本文关键字:模型 XNA 3D | 更新日期: 2023-09-27 17:56:28

模型是一个 .fbx我也尝试了许多模型,似乎没有任何工作,我想知道是否有人可以帮助我,以下代码就是我要感谢的!

using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.GamerServices;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Media;
namespace _3D
{
    public class Game1 : Microsoft.Xna.Framework.Game
    {
        GraphicsDeviceManager graphics;
        SpriteBatch spriteBatch;
        Model model;
        Matrix[] transforms;
        public Game1()
        {
            graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";
            graphics.PreferredBackBufferHeight = 800;
            graphics.PreferredBackBufferWidth = 1280;
        }
        protected override void Initialize()
        {
            base.Initialize();
        }
        protected override void LoadContent()
        {
            spriteBatch = new SpriteBatch(GraphicsDevice);
            model = Content.Load<Model>("3d/screwdriver");
            transforms = new Matrix[model.Bones.Count];
            model.CopyAbsoluteBoneTransformsTo(transforms);
        }
        protected override void UnloadContent()
        {
        }

        protected override void Update(GameTime gameTime)
        {
            if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed)
                this.Exit();

            base.Update(gameTime);
        }    
        // The draw method is one of the reasons I think nothing is working,
        protected override void Draw(GameTime gameTime)
        {
            GraphicsDevice.Clear(Color.CornflowerBlue);
            Matrix view = Matrix.CreateLookAt(
                new Vector3(200, 300, 900),
                new Vector3(0, 50, 0),
                Vector3.Up);
            Matrix projection = Matrix.CreatePerspectiveFieldOfView(MathHelper.ToRadians(45), GraphicsDevice.Viewport.AspectRatio, 0.1f, 10000.0f);
            Matrix baseWorld = Matrix.CreateScale(0.4f) * Matrix.CreateRotationY(MathHelper.ToRadians(180));
            foreach (ModelMesh mesh in model.Meshes)
            {
                Matrix localWorld = transforms[mesh.ParentBone.Index] * baseWorld;
                foreach (ModelMeshPart part in mesh.MeshParts)
                { 
                BasicEffect e = (BasicEffect)part.Effect;
                e.World = localWorld;
                e.View = view;
                e.Projection = projection;
                e.EnableDefaultLighting();
                }
                mesh.Draw();
            }
            base.Draw(gameTime);
        }
    }
}

C# XNA 3D 模型未呈现

我认为您的代码没有任何问题,因此问题可能出在模型上。

这可能是由有问题的模型文件引起的。Blender上的库存FBX导出器存在一个已知问题(我不知道您使用哪种建模软件来制作模型,但此事仍然相关),这使得模型的导出尺寸比Blender上的大100倍。结果是模型是如此之大,以至于它不仅将相机封闭在自身内部,而且如此之大,以至于它的多边形超出了视锥体。结果:模型确实已渲染,但除非您移动摄像机,直到您意识到缩放问题,否则它永远不会出现在屏幕上。

我之所以这样说,是因为我自己处理过这个问题。如果您确实在使用Blender,则应使用此页面中的导出器:http://blog.diabolicalgame.co.uk/2011/07/exporting-animated-models-from-blender.html