UpdateMode
Enum in Zigurous.Architecture
Declaration
public enum UpdateModeDescription
An update mode a behavior can run with.
Properties
| Update | Updates during the normal loop, once every frame. |
| LateUpdate | Updates after all other update functions, once every frame. |
| FixedUpdate | Updates during the physics loop at a fixed timestep. |
| Custom | Updates using a custom update loop. |