Interface CreateSpriteOptionsCoordinates

interface CreateSpriteOptionsCoordinates {
    condition?: () => boolean;
    x: Scriptable<number>;
    y: Scriptable<number>;
}

Properties

Properties

condition?: () => boolean

Callback that decides whether or not coordinates should be used

x: Scriptable<number>

The X value on the screen where the Sprite is displayed

y: Scriptable<number>

The Y value on the screen where the Sprite is displayed