Hi, it's been a while since i stopped by but i seem to be having a problem.
First off, i am running Linux 64bit, Nvidia 7600 _Binary Drivers, and using Celstart 1.2.1.
I want to create an entity on the fly by hitting a button. For testing that is the letter 's'.
The problem starts after i create the Sphere. All other objects in the scene can interact with it (as in the physics are normal) but the Actor - a cube mesh - just walks right through it.
If i create the Sphere first when the Scene loads it hangs in the sky and then drops when i hit 's' and my Actor does NOT walk through the mesh - it hits it when i walk into it.
It is only After the Scene has loaded and then i create the Sphere that the problem starts. I just keep walking through it but all other objects are affected by it's mesh - just not me (the Actor or Cube mesh). Here is the code, any help would be great!
<event name="pccommandinput_jump1">
<createpropclass name="pcmesh" />
<default propclass="pc(pcmesh)" />
<action id="actid(LoadMesh)">
<par id="parid(factoryname)" value="genSphere" />
</action>
<action id="actid(MoveMesh)">
<par id="parid(sector)" value="Scene" />
<par id="parid(position)" value="[3.26927,2.5393,0]" />
</action>
<createpropclass name="pcmechobject" />
<default propclass="pc(pcmechobject)" />
<action id="SetSystem">
<par id="parid(systempcent)" value="sistema"/>
<par id="parid(systempctag)" value="sistema"/>
</action>
<action id="actid(InitPhys)">
<par id="parid(mass)" value="0.5" />
<par id="parid(density)" value="1" />
<par id="parid(friction)" value="1" />
</action>
<action id="actid(SetColliderSphere)">
</action>
<action id="actid(SetMesh)">
<par id="parid(meshpctag)" value="Sphere" />
</action>
</event>