view movement...

Game Editor comments and discussion.

view movement...

Postby friedfish » Sat Jul 14, 2012 6:17 pm

What are you guys using to move your view actor? I'm looking for a way to move the view smoothly when you go up and down.

Currently I'm using canvas actors to move the view up, down, left and right.

What are yours?
User avatar
friedfish
 
Posts: 75
Joined: Wed Mar 14, 2012 2:31 pm
Location: UK
Score: 7 Give a positive score

Re: view movement...

Postby skydereign » Sat Jul 14, 2012 7:28 pm

I'm always a bit mystified why people use canvas actors to do this. But, I constantly see it. canvas actors are meant to be drawn on via canvas functions. If you want a collide able region you should use a filled region, or in some cases a wireframe. Anyway, I usually use two lines of code.
player -> Draw Actor -> Script Editor
Code: Select all
view.x = max(x-view.width/2-200, min(x-view.width/2+200, view.x));
view.y = max(y-view.height/2-150, min(y-view.height/2+150, view.y));

Though usually the player is parented to a colliding region.
User avatar
skydereign
 
Posts: 3510
Joined: Mon Jul 28, 2008 8:29 am
Score: 589 Give a positive score

Re: view movement...

Postby friedfish » Sun Jul 15, 2012 2:24 am

ah sorry my mistake... I am using a wireframe... my fault.. :) your two lines of code is good but it gives me problems...
for example if I parent the player to another actor it disappears and show me beginning position of the view.

I have a moving platform which when the player rides it I parent the player to it so it follows... it was okay when I was using wireframe, a little screen shake because when the player collides to the wireframe while riding the platform it shakes the screen.

when I used the codes you have and when the parent changes the view seems to go back to its beginning position... your code was much smoother than the wireframe method. I like it. Is there anyway you know I can fix the view change problem?
User avatar
friedfish
 
Posts: 75
Joined: Wed Mar 14, 2012 2:31 pm
Location: UK
Score: 7 Give a positive score

Re: view movement...

Postby skydereign » Sun Jul 15, 2012 3:05 am

As I said, it isn't the same if you want to handle parenting. In that case you should use xscreen/yscreen variables, as they aren't influenced by parenting. The only difference is you need to change any x/y variable references for the event actor to their equivalent xscreen/yscreen (x = view.x+xscreen).
User avatar
skydereign
 
Posts: 3510
Joined: Mon Jul 28, 2008 8:29 am
Score: 589 Give a positive score


Return to GE - General

Who is online

Users browsing this forum: No registered users and 1 guest