Jump to content

Right way for calling a function on a click event, using Phaser States


salcapolupo
 Share

Recommended Posts

Hello everyone,

 

I'm trying to test some state features in Phaser, but I got some problem here.

 

I need to bind a call to a function for loading next state when user click on a button, i.e:

BasicGame.MainMenu.prototype = {    create: function () {[...]        this.gameTitle.events.onInputDown.add( this.startgame, this);    },        startgame: function () {        alert("ok");        this.state.start('reception');    }, [...]}

All seems ok but when I try to load page, nothing happens inside the "startgame" block (I expected to see "ok" alert, btw).

What am I doing wrong, or what is the right way of doing this? Thanks in advance!

Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...