Page 1 of 1

Screen Keep Going Down

PostPosted: Tue Aug 29, 2006 12:34 pm
by Jokke
When i test my game the screen goes down without me pressing anything or moving character i just watch the screen slowly float downwards

It may have to do with this im not shure:
Code: Select all
Player/draw actor:

yvelocity += .8;
if(yvelocity > 8) yvelocity = 8;


And i have this on View/draw actor:
Code: Select all
yvelocity += .8;
if(yvelocity > 8) yvelocity = 8;

PostPosted: Tue Aug 29, 2006 12:53 pm
by makslane
You are telling to the view to go down with velocity 8.

PostPosted: Tue Aug 29, 2006 12:54 pm
by Jokke
oh, neat...then im gonna remove those and parent the view instead :P