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