makslane wrote:You can put a collision event in the centerView actor.
How you move the centerView?
Uhh using this script.
Draw Actor -> Script Editor
int weight = 10;
x = ((weight -1)*x + player.x)/weight;
y = ((weight -1)*y + player.y)/weight;
Where I move the view follows my actor.