크리티컬섹션 :: Phaser Js 코드 템플레이트 (Button)

달력

112024  이전 다음

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

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);


Posted by 마스터킹
|