okay basically i am making a basic FPS, it is for an assignment.
i'm having troubles getting jumping to happen
i read through the FPS guide in other forum but the jumping is based on the camera being oriented to the object (as far as i can tell at least) (and possibly that i don't have dbPRO.
IF SPACEKEY()=1 AND JUMPING#=0
JUMP#=1
Endif
IF JUMP#=1
GROUND#=OBJECT POSITION Y(2)
JUMP_SPEED#=1
JUMPING#=1
JUMP#=0
ENDIF
IF JUMPING#=1
DEC JUMP_SPEED#,.001
POSITION OBJECT 2,OBJECT POSITION X(2),OBJECT POSITION Y(2)+JUMP_SPEED#, OBJECT POSITION Z(2)
IF OBJECT POSITION Y(2)<=GROUND# THEN JUMPING#=0
ENDIF
where object 2 is the gun
but mine is the other way around, the object is oriented to the camera
is there some way to have the camera move up with the object following it in a jumping fashion
sorry if i'm being unclear.