phaser4-rex-plugins
Version:
40 lines (31 loc) • 869 B
TypeScript
import TickTask from '../../utils/componentbase/TickTask';
export default Flash;
declare namespace Flash {
interface IConfig {
duration?: number,
repeat?: number,
}
namespace Events {
type CompleteCallbackType = (
gameObject: Phaser.GameObjects.GameObject,
flash: Flash
) => void;
}
}
declare class Flash extends TickTask {
constructor(
gameObject: Phaser.GameObjects.GameObject,
config?: Flash.IConfig
)
setEnable(enable?: boolean): this;
enable: boolean;
flash(duration?: number, repeat?: number): this;
flash(config: {
duration?: number,
repeat?: number,
}): this;
setDuration(duration: number): this;
duration: number;
setRepeat(repeat: number): this;
repeat: number;
}