Page 1 of 1

View Actor Refocusing

PostPosted: Tue Jul 02, 2013 8:09 pm
by Turon
How do you refocus the view actor on the player after it has go out of vision,
But still have the view actor aline on the grids?

Re: View Actor Refocusing

PostPosted: Tue Jul 02, 2013 9:46 pm
by skydereign
You can use the normal repositioning code, but add this after it.
Code: Select all
x = round(x/32)*32;
y = round(y/32)*32;

This code is set for the view actor, and 32 is the size of the grid.

Re: View Actor Refocusing

PostPosted: Wed Jul 03, 2013 10:38 am
by Turon
How do you move the view actor with the player even though the player is not the view actor parent actor?

Re: View Actor Refocusing

PostPosted: Wed Jul 03, 2013 9:00 pm
by skydereign
Turon wrote:How do you move the view actor with the player even though the player is not the view actor parent actor?

Have you tried to figure this out by searching the forums? There are many examples of this already. Here is another one.
view -> Draw Actor -> Script Editor
Code: Select all
x = player.x - width/2;
y = player.y - height/2;

That is a very simple tracking, that acts like parenting.

Re: View Actor Refocusing

PostPosted: Thu Jul 04, 2013 2:26 pm
by Turon
Thank You Skydereign!
I am searching around existing topics to refine what I learned.