[BloodyMess] Static objects ?

ironwolf151

18-05-2009 16:03:28

Hi,

Is it possible to create a static object like a cube for example ?
I need to create some objects (like cube or spheres) which can't move (no move because of gravity or collisions).

I tried ot find in the doc and forums a loution but i didn't find anything , and a friend tell me it's not possible to do this with BloodyMess 1.5.4 :s

spacegaier

18-05-2009 16:22:26

Use KinematicActor or OGRE3DKinematicBody. They woun't react to forces, however can still be moved if you want to.

betajaen

18-05-2009 17:09:57

StaticGeometry for anything static; that will be created at beginning of the scene, never moved, and destroyed at the end.

KinematicActor/Body for anything static-ish. But can be created in the middle of the scene's life, destroyed when ever. But you cannot use any of the "Geometry" shapes with it.