CinemachineBrain.UpdateMethod Enumeration

Cinemachine

CinemachineBrainUpdateMethod 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
[DocumentationSortingAttribute(0.1f, DocumentationSortingAttributeLevel.UserRef)]
public enum UpdateMethod
Cinemachine.UpdateMethod = function();
Cinemachine.UpdateMethod.createEnum('Cinemachine.UpdateMethod', false);
Members
  Member nameValueDescription
FixedUpdate0Virtual cameras are updated in sync with the Physics module, in FixedUpdate
LateUpdate1Virtual cameras are updated in MonoBehaviour LateUpdate.
SmartUpdate2Virtual cameras are updated according to how the target is updated.
See Also