JV-ODE: Galaxy Man! Ragdolls in outer space!

Blitz3D Forums/Blitz3D Userlibs/JV-ODE: Galaxy Man! Ragdolls in outer space!

Danny(Posted 2006) [#1]
eh eh...

Here's a little experiment trying to 'move a ragdoll'...
Haven't managed to make him 'move' yet, but he's flying all right :D

danny




Happy Sammy(Posted 2007) [#2]
Hi Danny,

With current version V1.22,
it returns error!

ODE internal error 2
--------------------
Bad argument(s) (..\..\ode\src\sphere.cpp:51)

What should we change?
Thanks in advance.


VIP3R(Posted 2007) [#3]
A sphere with zero size is no longer permitted.

Change the following line in the 'CreateRagDoll' function...

rootGeom = dCreateSphere(Space,0)

to

rootGeom = dCreateSphere(Space,0.1)

It should work ok then :)


Happy Sammy(Posted 2007) [#4]
Thanks a lot.