What is the difference of scroll layout and scroll to sprite's behavior.
If I use every tick-> System: Set scroll X to ScrollX + (Sprite.X - ScrollX) or add a scroll to behavior to my sprite, the result will be the same ?
Develop games in your browser. Powerful, performant & highly capable.
The result will be the same. You can also simply set scroll X to player.X
Set layout scroll is often used when you want to do smooth scrolling, lepring, for example: set scroll x to lerp(scrollx, player.x, dt*4)