Table of Contents

Class CameraBlendState

Namespace
Gasimo.CineBlend
Assembly
Cineblend.CSharp.dll

Represents the blend state between two cameras

public class CameraBlendState
Inheritance
object
CameraBlendState

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

ICameraModule

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; }

Property Value

ICameraModule