diff --git a/Tools/Docusaurus/docs/UdonSharp.md b/Tools/Docusaurus/docs/UdonSharp.md index 9c56d8de..9952857a 100644 --- a/Tools/Docusaurus/docs/UdonSharp.md +++ b/Tools/Docusaurus/docs/UdonSharp.md @@ -66,7 +66,20 @@ public class Example : UdonSharpBehaviour ## DefaultExecutionOrder -Specifies the order that Update, LateUpdate, and FixedUpdate happen in relative to other UdonSharpBehaviours with an int. All behaviours are at 0 by default, the lower the int, the earlier their update happens. The int can be negative. +Specifies the order that Udon Behaviour events will fire relative to other Udon Behaviours. + +Lower values indicate that the event will fire earlier compared to other Udon Behaviours, and higher values indicate that the event will fire later compared to other Udon Behaviours. The execution order value can be negative. + +When this attribute is not specified, the default execution order is `0`. + +Events affected by execution order are: + +* `OnEnable` (called for the first time prior to `Start`) +* `Start` +* `Update` +* `LateUpdate` +* `FixedUpdate` +* `PostLateUpdate` ### Example ```cs