![]() |
#2
|
|||
|
|||
Hi Luca,
Here is some sample code that uses the keyboard for navigation, let me know if this is not what you are looking for: Code:
import viz viz.go() def mytimer(num): if viz.iskeydown(viz.KEY_UP): viz.move(0,0,0.1) elif viz.iskeydown(viz.KEY_DOWN): viz.move(0,0,-0.1) if viz.iskeydown(viz.KEY_RIGHT): viz.rotate(viz.BODY_ORI,1,0,0) elif viz.iskeydown(viz.KEY_LEFT): viz.rotate(viz.BODY_ORI,-1,0,0) viz.callback(viz.TIMER_EVENT,mytimer) viz.starttimer(0,0.01,viz.FOREVER) Code:
a = 7.0 for x in range(10): a = a + 0.1 print(a<7.5) print '%.20f'%a Code:
a = 7.0 for x in range(10): a = a + 0.1 print(round(a,1)<7.5) print a I'm honestly not sure why that 0.016 is in there, but you can control the velocity by adjusting the variable FORWARD_SPEED which is declared near the top of the script. Good luck! |
|
|