posted 11 years ago
i had a question but i am not sure what the problem is.
if user keep right key down. than camera should move left.and my player should fall down bc there are two empty(sky,'0') under player.
move camera.
now to move level iam doing doing this in paint method in level class.
above code will move the bottom floor when user moves left and right.
than i am setting a collision box around every where i see '1'(ground)
not to check for collision i am doing:
if i print the this.rect.get(i) in if statment: i get
java.awt.Rectangle[x=0,y=20,width=5,height=5]
now if i move to right block: output is
java.awt.Rectangle[x=0,y=20,width=5,height=5]
should that be?
java.awt.Rectangle[x=5,y=20,width=5,height=5]
also my player jump method: