Interface InfluencedCameraCue

A cue draws the InfluencedCamera towards a point if the camera is within the outerRadius. If the camera is within the innerRadius, it will be fixed on the cue point.

interface InfluencedCameraCue {
    innerRadius: number;
    outerRadius: number;
    x: number;
    y: number;
    zoom: number;
}

Hierarchy (view full)

Properties

innerRadius: number

The inner radius of this influence point.

outerRadius: number

The outer radius of this influence point.

x: number
y: number
zoom: number

The zoom value to multiply the camera zoom with when the camera is within outerRadius.