Cinemachine
CinemachineBrainm_UpdateMethod Field |
Depending on how the target objects are animated, adjust the update method to
minimize the potential jitter. Use FixedUpdate if all your targets are animated with for RigidBody animation.
SmartUpdate will choose the best method for each virtual camera, depending
on how the target is animated.
Namespace: Cinemachine
Assembly: Cinemachine (in Cinemachine.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
[TooltipAttribute("Use FixedUpdate if all your targets are animated during FixedUpdate (e.g. RigidBodies), LateUpdate if all your targets are animated during the normal Update loop, and SmartUpdate if you want Cinemachine to do the appropriate thing on a per-target basis. SmartUpdate is the recommended setting")] public CinemachineBrainUpdateMethod m_UpdateMethod
var m_UpdateMethod
Field Value
Type: CinemachineBrainUpdateMethodSee Also