All you have to do is put this in draw actor of the follower:
- Code: Select all
x=view.x/1;
y=view.y/1;
You might have to do this if you have a background thats large:
- Code: Select all
x=view.x/1+(width/2);
y=view.y/1+(height/2);
Why /1? Because without that, you can see the background move a bit when the view moves, but by dividing it by 1 for some reason its instant