그래픽스 기능을 이용하여 사각형 그리기
화면 좌상단이 (0 , 0) 으로 시작함
function drawRect()
{
const graphics = new PIXI.Graphics();
graphics.beginFill(0xDE3249);
graphics.drawRect(50, 50, 100, 100);
graphics.endFill();
Game.stage.addChild(graphics);
}
'PixiJS' 카테고리의 다른 글
PIXI.Application (0) | 2019.07.19 |
---|---|
App 메인화면 출력 (0) | 2019.07.13 |
pixijs Setup 방법 (0) | 2019.07.13 |
pixijs (0) | 2019.07.13 |