CinemachineTargetGroup.UpdateMethod Enumeration

Cinemachine

CinemachineTargetGroupUpdateMethod Enumeration

This enum defines the options available for the update method.

Namespace:  Cinemachine
Assembly:  Cinemachine (in Cinemachine.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
public enum UpdateMethod
Cinemachine.UpdateMethod = function();
Cinemachine.UpdateMethod.createEnum('Cinemachine.UpdateMethod', false);
Members
  Member nameValueDescription
Update0Updated in normal MonoBehaviour Update.
FixedUpdate1Updated in sync with the Physics module, in FixedUpdate
LateUpdate2Updated in MonoBehaviour LateUpdate.
See Also