Inherits OrderAttribute.
Public Member Functions | |
OrderAfterAttribute (params Type[] types) | |
Fusion attribute that defines execution order of this script relative to specified other scripts. More... | |
Properties | |
Type[] | After [get] |
The array of scripts the attributed script should run before. More... | |
Fusion attribute used to indicate relative execution order of SimulationBehaviour and NetworkBehaviour derived scripts. Any number of scripts can be specified.
Usage:
[OrderAfter(typeof(MySimulationBehaviour), typeof(MyNetworkBehaviour), etc)]
OrderAfterAttribute | ( | params Type[] | types | ) |
Fusion attribute that defines execution order of this script relative to specified other scripts.
types | The SimulationBehaviour and NetworkBehaviour scripts this attributed script should execute AFTER. |
|
get |
The array of scripts the attributed script should run before.