check out this error with phy spheres.
heres a picture:
the spheres have landed ontop of the static box,but they are just suspended ontop of each other!! not falling off each other.this is not supposed to happen in physics!
here is the code i used so anyone can test it:
autocam off
position camera 0,40,-66
point camera 0,4,0
make object box 2,90,1,90
zrotate object 2,rnd(20)
color object 2,rnd(150000)
me=77
for n=3 to 33
make object sphere n,4 : position object n,0,me,0
inc me,4
color object n,rnd(150000)
next n
phy start
phy make rigid body static box 2
for n=3 to 33
phy make rigid body dynamic sphere n
next n
do
phy update
sync
loop