Interface ButtonOptions

interface ButtonOptions {
    height: number;
    offset: Vector2;
    onClick: (() => void);
    onPressed: (() => void);
    radius: number;
    shape: ButtonShape;
    touchEnabled: boolean;
    width: number;
}

Properties

height: number
offset: Vector2
onClick: (() => void)
onPressed: (() => void)
radius: number
touchEnabled: boolean
width: number