Hi,
I can't find a way to position a DetectorVolume in space other than changing the position of all the Verticies. What am I missing?
regards
Pavi
Search found 12 matches
- Fri Mar 02, 2012 10:03 pm
- Forum: Questions and Help
- Topic: DetectorVolume Position
- Replies: 1
- Views: 1996
- Tue Feb 28, 2012 11:20 pm
- Forum: Questions and Help
- Topic: Dynamic Mesh -> what Class ?
- Replies: 20
- Views: 11905
Re: Dynamic Mesh -> what Class ?
thank you very much! works very well now.
- Fri Feb 24, 2012 1:06 am
- Forum: Questions and Help
- Topic: Dynamic Mesh -> what Class ?
- Replies: 20
- Views: 11905
Re: Dynamic Mesh -> what Class ?
As you said I had to move the init instructions to the physic thread. I'm not very experienced with threads so i hope this will keep working, or i will just get rid of it. I think it's not necessary for what I'm trying to achieve, but I'm always trying to get the best performance 

- Thu Feb 23, 2012 9:37 pm
- Forum: Questions and Help
- Topic: Dynamic Mesh -> what Class ?
- Replies: 20
- Views: 11905
Re: Dynamic Mesh -> what Class ?
At last i could somewhat reproduce the startup crashing. It happens about every other programstart, that it instantly crashes. Reason for this is the asynchronous updating which is identically to the one in the example. At following points it just crashes. If i could see some value problems with the...
- Thu Feb 23, 2012 11:56 am
- Forum: Questions and Help
- Topic: Dynamic Mesh -> what Class ?
- Replies: 20
- Views: 11905
Re: Dynamic Mesh -> what Class ?
I could only recreate the ConvexHull graphics bug while using one of my Models. Its just a simple Ball created in 3dsmax exported with kW-Exporter into .X file format. http://dl.dropbox.com/u/4405602/Ball.X with this I call this code, again in the static mesh demo like the mobilemeshes: int numColum...
- Thu Feb 23, 2012 10:58 am
- Forum: Questions and Help
- Topic: Dynamic Mesh -> what Class ?
- Replies: 20
- Views: 11905
Re: Dynamic Mesh -> what Class ?
Hi, I recreated the MobileMesh Problems. int numColumns = 4; int numRows = 4; int numHigh = 1; float separation = 8; ball = game.Content.Load<Model>("360 thick Sphere"); TriangleMesh.GetVerticesAndIndicesFromModel(ball, out staticTriangleVertices, out staticTriangleIndices); MobileMesh toA...
- Thu Feb 23, 2012 12:48 am
- Forum: Questions and Help
- Topic: Dynamic Mesh -> what Class ?
- Replies: 20
- Views: 11905
Re: Dynamic Mesh -> what Class ?
i did reproduce it. I made following changes to the StaticMeshDemo (Shift + 1): CharacterController.cs: Body = Body = new Cylinder(Vector3.Zero, 1.7f, .6f, 10); --> Body = Body = new Cylinder(Vector3.Zero, 1.7f, .2f, 10); StaticMeshDemo.cs game.Camera.Position = new Vector3(0, 10, 40); -> game.Camer...
- Wed Feb 22, 2012 11:01 pm
- Forum: Questions and Help
- Topic: Dynamic Mesh -> what Class ?
- Replies: 20
- Views: 11905
Re: Dynamic Mesh -> what Class ?
using System; using System.Collections.Generic; using System.Linq; using System.Diagnostics; using System.Threading; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Content; using Microsoft.Xna.Framework.GamerServices; using Microsoft.Xna.Framework....
- Wed Feb 22, 2012 9:19 pm
- Forum: Questions and Help
- Topic: Dynamic Mesh -> what Class ?
- Replies: 20
- Views: 11905
Re: Dynamic Mesh -> what Class ?
Are each of those individual balls mobile meshes? Does the character only do strange things when standing on mobilemeshes undergoing penetration, or does it do strange things always- even when on a StaticMesh? Yes they are each mobile meshes in the first screenshot. the ModelDrawer bugs are not cre...
- Wed Feb 22, 2012 4:23 pm
- Forum: Questions and Help
- Topic: Dynamic Mesh -> what Class ?
- Replies: 20
- Views: 11905
Re: Dynamic Mesh -> what Class ?
So i managed to create ConvexHullShapes, which work fine and I set up the Modeldrawer. After adding a few ConvexHullShapes, the Modeldrawer starts to bug around and every further created object is not rendered (empty Boundingbox) http://img21.imageshack.us/img21/8274/graphicsbugs.png what is going o...
- Wed Feb 22, 2012 12:16 pm
- Forum: Questions and Help
- Topic: Dynamic Mesh -> what Class ?
- Replies: 20
- Views: 11905
Re: Dynamic Mesh -> what Class ?
Thank you for the very extended help. Sadly nothing you suggested helped me till now. To get an idea of your interpretation of rubustness,so that i dont chase a problem that is not to be found, here is an screenshot showing the problem the balls are a loaded testmodel (~200 Tris) that use MobileMesh...
- Wed Feb 22, 2012 12:25 am
- Forum: Questions and Help
- Topic: Dynamic Mesh -> what Class ?
- Replies: 20
- Views: 11905
Dynamic Mesh -> what Class ?
Hello, i have a couple of problems that i am not able to solve on my own. The first: I am trying to add various dynamic objects of different shapes. For that I am using the MobileMesh Class right now, which makes a lot of problems. I have read a lot of forum threads, that talk about the rubustness o...