Hello
I have created a skysphere where a spaceship is flying inside, i added the controls, and it all works fine, but it feels like a toy, its absolutely not realistic
here is my controlling code:
do
mmy=mousemovey()
mmx=mousemovex()
if mmx<>0 then yrotate camera wrapvalue(camera angle y()+mmx)
if mmy<>0 then xrotate camera wrapvalue(camera angle x()+mmy)
if upkey() = 1 then pitch object up 2,speed# / 10
if downkey() = 1 then pitch object down 2,speed# / 10
if leftkey() = 1 then turn object left 2,speed# / 10
if rightkey() = 1 then turn object right 2,speed# / 10
if keystate(30) = 1 and speed < 5 then speed# = speed# + 0.1
if keystate(44) = 1 and speed# > 0 then speed# = speed# - 0.1
move object 2,speed#
sync
how can i make this more realistic?
Microsoft isnt evil, they just make really crappy operating systems -- Linus torvalds