in0finite / SanAndreasUnity

Open source reimplementation of GTA San Andreas game engine in Unity
https://discord.gg/p6jjud5
MIT License
2.15k stars 353 forks source link

Assign script execution order to all scripts #37

Closed in0finite closed 4 years ago

in0finite commented 4 years ago

Unity executes scripts at order at which they are loaded. This order can change with every build, which can cause the game to behave differently.

The only way (that I know) to prevent this is to assign execution order to all scripts.

in0finite commented 4 years ago

Done.