Im updating some of my games and the Persist behavior is giving me some pain, i want to know if it's posible to restart the Layout restarting the position of the objects with "Persist" but the local variables to remain the same.
Develop games in your browser. Powerful, performant & highly capable.
You could put the original position data on the object as 2 variables then on start of layout set position based on x=var1,y=var2
Similarly, you can also use an invisible helper object as a "start point" and move your persisted object to that on start of layout. This night be more flexible if your start point isn't always exactly the same spot.