i have a character that i made and animated in 3d canvas pro using bones when i export it as a .x the animations wont play.
the code i'm trying to use is :
load object "player.x",32
phy make box character controller 32, -400.642,-63.28,-800, 0.50, 0.56, 0.12, 1, 0.5, 45.0
do
key = 0
if upkey ( )
key = 1
phy move character controller 32, 150.0
Loop Object 32,2,11: Set Object Speed 32, 10000
endif
if downkey ( )
key = 1
phy move character controller 32, -150.0
Loop Object 32,2,11: Set Object Speed 32, 10000
endif
if key = 0
phy move character controller 32, 0.2
phy move character controller 32, -0.2
Loop Object 32,12,20: Set Object Speed 32, 10000
endif
phy update
sync
loop
my question is, is it the modle or the code and if its the code how would i fix it.