UNPKG

@mai3/phaser-sdk

Version:

A UI component library based on the Phaser game engine

14 lines 432 B
import { BaseConfig } from "./BaseConfig"; export interface ButtonHandle { audio?: string; texture?: string | Phaser.Textures.Texture; handleFn?: Function; } export interface BaseButtonConfig extends BaseConfig { enableSmoothScaleAnim?: boolean; handleHover?: ButtonHandle; handleOut?: ButtonHandle; handleDown?: ButtonHandle; handleUp?: ButtonHandle; } //# sourceMappingURL=BaseButtonConfig.d.ts.map