This is probem:
I made project with camera movement on matrix and strafing, but when I press "W" for move camera forward, camera is going forward, but falling down...simillar problem when I want back "S"...but in this case...camera is going back and gaoing more and more in air.. xD
And just one more problem...when I Hold "W+A" "W+D" "S+A" and "S+D" camera has normal movement, but unnormal speed...
This is Code:
Sync On : Sync Rate 60 : Hide Mouse
Make Matrix 1,100,100,100,100
Position Camera 50,2,0
z#=camera position z (0)
Rem : Little strange strafing xD I found it on forum :)
do
If Keystate (17) then Move Camera z#+0.05
If Keystate (31) Then Move Camera z#-0.05
if keystate(30)
turn camera left 90
move camera 0.05
turn camera right 90
endif
If Keystate(32)
turn camera right 90
move camera 0.05
turn camera left 90
Endif
sync
loop
Help !
Jasmin