UpdateMethod
public enum Railcam2D.UpdateMethod;Used by Railcam 2D to determine the Unity update method in which to move the camera.
| Value | Numeric | Summary |
|---|---|---|
| LateUpdate | 0 | Move the camera during Unity's LateUpdate method |
| FixedUpdate | 1 | Move the camera during Unity's FixedUpdate method |
| ManualUpdate | 2 | Move the camera only when Railcam2D.Move is called |