Enum CinemachineBrain.UpdateMethods
The options available for the update method.
Namespace: Unity.Cinemachine
Assembly: Unity.Cinemachine.dll
Syntax
public enum CinemachineBrain.UpdateMethods
Fields
| Name | Description |
|---|---|
| FixedUpdate | CinemachineCameras are updated in sync with the Physics module, in FixedUpdate. |
| LateUpdate | CinemachineCameras are updated in MonoBehaviour LateUpdate. |
| ManualUpdate | CinemachineCameras are not automatically updated, client must explicitly call the CinemachineBrain's ManualUpdate() method. |
| SmartUpdate | CinemachineCameras are updated according to how the target is updated. |