TEXT

참조 : https://photonstorm.github.io/phaser3-docs/Phaser.GameObjects.TextStyle.html#strokeThickness__anchor

text 출력

this.add.text(x, y, 'text', style)

this.add.text(0, 0, 'Hello World', { fontFamily: 'Georgia, "Goudy Bookletter 1911", Times, serif' });
this.add.text(0, 0, 'Hello World', { font: '"Press Start 2P"' });

폰트 사이즈

{ fontSize: 12 } or { font: '12px CustomFont' }.

Text를 box center에 고정하는 법

const button  = this.add.rectangle(x, y, width, height);
const text  = this.add.text(0, 0, optionText);

Phaser.Display.Align.In.Center(text, button); // 이렇게 하면 button의 center에 text가 위치한다.
Phaser.Display.Align.In.Center(text, button, offsetX, offsetY); // offset값 추가
평점을 남겨주세요
평점 : 2.5
총 투표수 : 1