Script Execution Order
[ExecuteAfter(typeof(SomeOtherScript))] /* to specify that this script executes after SomeOtherScript) */
[ExecuteBefore(typeof(SomeOtherScript))] /* to specify that this script executes before SomeOtherScript */ [ExecuteAfter(typeof(SomeOtherScript))]
public class BomberController : NetworkBehaviour
{
// ...
}Last updated