workadventure/front/src/Phaser/Components/TextField.ts

8 lines
246 B
TypeScript
Raw Normal View History

export class TextField extends Phaser.GameObjects.BitmapText {
constructor(scene: Phaser.Scene, x: number, y: number, text: string | string[]) {
super(scene, x, y, 'main_font', text, 8);
this.scene.add.existing(this)
}
}