Tagged Questions
1
vote
2answers
598 views
How to convert Blender models for XNA
I am creating my first game, I'm using Blender to create character models, is there any tutorial or guide to tell me what steps to convert a model into something animated and usable in XNA?
3
votes
1answer
224 views
Retrieving model position after applying modeltransforms in XNA
For this method that the goingBeyond XNA tutorial provides, it would be really convenient if I could retrieve the new position of the model after I apply all the transforms to the mesh. I have edited ...
0
votes
1answer
62 views
Texture not carrying over to game correctly?
I have created my map for my game using 3DS Max. I have then applied textures to the map within 3DS Max, where the textures all show correctly. I export the map as a .fbx file to use within an XNA ...
0
votes
1answer
80 views
Changing textures on a Model messes up antialiasing? (XNA)
Here is a code sample:
blockModel = game.Content.Load<Model>("Models/Cubes/Cube"); //this is a .fbx file, made in blender
absoluteBlockTransforms = new ...
2
votes
1answer
144 views
How attach a model with another model on a specific bone?
I meet a difficulty attached to a model to another model on a "bone" accurate.
I searched several forums but no result. I saw that many people have asked the same question but no real result see no ...
-2
votes
1answer
158 views
How to draw millions of cubes without idle , model instancing in XNA?
I work for a project in the style of game "Minecraft".
I started using the "Model Instancing" in order to generate a large number of cubes possessing an identical model.
So far so good.
My problem is ...
14
votes
1answer
4k views
Orienting a model to face a target
I have two objects (target and player), both have Position (Vector3) and Rotation (Quaternion). I want the target to rotate and be facing right at the player. The target, when it shoots something ...
2
votes
1answer
160 views
Sketchup model renders wrong in XNA
My XNA model renders wrong.
It should render like that:
But it renders like that:
The background doesn't matter. It's just the model that renders wrong.
Here is the drawing code:
protected ...
3
votes
1answer
156 views
How rotate a 3D cube at its center XNA?
I try to rotate a 3D cube on itself from its center, not the edge.
Here is my code used.
public rotatemyCube()
{
...
Matrix newTransform = Matrix.CreateScale(scale) * ...
0
votes
1answer
155 views
Apply bone tranforms when importing FBX in XNA
Preconditions: I have some models, that does only contain some meshes and one texture. There is no animation within the model. An example: a model of a table.
I want to draw the Model with a custom ...
2
votes
1answer
70 views
XNA partially extending the content pipeline using a ModelContent
I am trying to extend XNA's content pipeline in order to import a model in .obj format (a very simple and text-based format, see here for details). Writing a full extension library seems like an ...
1
vote
0answers
82 views
BasicEffect and SkinnedEffect treating WorldViewProj differently?
I made a ModelBatch class that batches and draw rigged/unanimated and skinned/animated models. For now, BasicEffect is assigned to rigged models (XNA Model Processor) and SkinnedEffect is assigned to ...
1
vote
0answers
100 views
How to draw a large number of model (identical) with vertex buffer in XNA?
I am facing a problem that many developers as have probably found a solution.
I have a small project with a floor designed with small cubes (100X100).
If I exceed this limit, my game suffered major ...
1
vote
0answers
150 views
3D Animations in XNA 3.1
Well, guys. I'm in a Game Design class at school. Before you ask "WHY ARE YOU USING 3.1 INSTEAD OF 4" -- I would like to point out that C# 2008, and .NET framework 3 is NOT my preferred environment, ...
0
votes
0answers
83 views
Creating Primitives and Model from Texture2D Xna 4.0
So I was playing around with XNA working on a 3d engine with 2d sprites as characters and objects.
After a while I became very unhappy with the way the sprites were being scaled and billboarded so I ...