my cc doesnt keep falling.
im trying to come up with some code for my player.i was testing the cc.it falls off the edge and doesnt keep falling.check this code:
`character controller testing :)
`i love taina!
autocam off
position camera 0,30,-70 : point camera 0,5,0
make object box 1,90,0.1,90 : Zrotate object 1,rnd(40)
make object cube 2,5 : position object 2,0,10,0
for n=1 to 2
color object n,rnd(50000)
next n
phy start
phy make rigid body static box 1
phy make box character controller 2,0,10,0,5,5,5,1,1,10
do
if upkey() then phy move character controller 2,10
if leftkey() then turn object left 2,1
if rightkey() then turn object right 2,1
phy update
sync
loop