UpdateMode


Declaration

public enum UpdateMode

Description

An update mode a behavior can run with.

Properties

UpdateUpdates during the normal loop, once every frame.
LateUpdateUpdates after all other update functions, once every frame.
FixedUpdateUpdates during the physics loop at a fixed timestep.
CustomUpdates using a custom update loop.