Interface InfluenceCameraOptions

Options for creating an InfluenceCamera

interface InfluenceCameraOptions {
    ignoreTimeScale?: boolean;
    mapName: string;
    returnDuration?: number;
    returnEase?: EaseType;
    timeScale?: number;
    x: number;
    y: number;
}

Properties

ignoreTimeScale?: boolean

If true, ignore global time scale for return-to-base

mapName: string

Map name for the camera

returnDuration?: number

Duration for returning to base location

returnEase?: EaseType

Ease type for returning to base location

timeScale?: number

Optional per-operation time scale multiplier for return-to-base

x: number

Initial X position

y: number

Initial Y position