ok yes i know i've posted about jumping before but this is different because i have the jumping done it's just once the camera gets to a certain point it comes back down like it hit a barrier and i no y it does that i just want it to be smoot like a real jump you know, here is my code
; press spacebar to jump If KeyHit(57) And falling = False jumped = True EndIf If jumped = True yvel# = yvel# + .6 ; if the player is at highest point, start moving down If yvel# >= 6 jumped = False EndIf EndIf ; start the falling process yvel# = yvel# - .3 If yvel# <= 0 yvel# = 0 falling = False EndIf