Add a button
섫명:
game.add.button(x,y,imageKey,clickFunction,this,over_frame,normal_frame,down_frame)
Sprite click
설명:
this.char1.events.onInputUp.add(this.clickHandler,scope);
Enable a sprite for input
설명 : 스프라이트에서 클릭 이벤트를 사용할 수 있으려면 먼저 입력에 사용하도록 설정해야합니다.
this.spriteName.inputEnabled=true;
Canvas click
설명 : 전체 게임에 리스너 추가
game.input.onUp.add(functionName, this);
'Phaser JS' 카테고리의 다른 글
Phaser Js 에서 오브젝트 크기 조절하기 (0) | 2017.07.10 |
---|---|
Phaser Js 코드 템플레이트 (Text) (0) | 2017.07.10 |
Phaser Js 코드 템플레이트 (Physics) (0) | 2017.07.10 |
Phaser Js 코드 템플레이트 (Sprite) (0) | 2017.07.10 |
Phaser Js 코드 템플레이트 (Starter) (0) | 2017.07.10 |