Class CameraBlendState
Represents the blend state between two cameras
public class CameraBlendState
- Inheritance
-
objectCameraBlendState
Properties
BlendTime
Time which it takes to blend between the two cameras
public float BlendTime { get; set; }
Property Value
- float
CurrentTime
Elapsed time since the blend started
public float CurrentTime { get; set; }
Property Value
- float
FromCamera
Camera to blend from
public ICameraModule FromCamera { get; set; }
Property Value
IsBlending
Returns true if the blend is still active
public bool IsBlending { get; }
Property Value
- bool
ToCamera
Camera to blend to
public ICameraModule ToCamera { get; set; }