Interface InfluencedCameraTarget

A target for the InfluencedCamera. The target can influence the camera by specifying influences vectors and a zoom value.

interface InfluencedCameraTarget {
    influences: Vector2[];
    x: number;
    y: number;
    zoom: number;
}

Hierarchy (view full)

Properties

Properties

influences: Vector2[]

The influences to apply on the camera.

x: number
y: number
zoom: number

The zoom value to multiply the camera zoom with.