Search found 2 matches
- Fri Apr 27, 2012 9:03 pm
- Forum: Questions and Help
- Topic: Static Mesh Trouble
- Replies: 3
- Views: 3866
Re: Static Mesh Trouble
Hi, I've inserted de Bepu Drawer in my application and found the problem, the spheres had Zero radius (and so didn't appear in the drawer). It's a problem with my MAX exporter (generating large xml files, bound to have glitches, but its fixed now). StaticMesh is very good and stable. Everything is w...
- Thu Apr 26, 2012 4:59 pm
- Forum: Questions and Help
- Topic: Static Mesh Trouble
- Replies: 3
- Views: 3866
Static Mesh Trouble
Hi, I'm trying to load a simple static mesh (Just a simple test mesh) with the following code.. (Windows Phone SDK) Vector3[] vertices = VertexList.ToArray(); int[] indices = FaceList.ToArray(); staticMesh m = new StaticMesh(vertices, indices, new AffineTransform(new Vector3(0, 0, 0))); space.Add(m)...