Jump to content

HUD - How to implement it


plicatibu
 Share

Recommended Posts

That was my solution, just as rich says about using group, you can do a class extending a group as well:

 

function HUD(game, parent, name, useStage) {
    Phaser.Group.call(this, game, parent, name, useStage);
  
    //Your elements here.
};
 
HUD.prototype = Object.create( Phaser.Group.prototype);
HUD.prototype.constructor = HUD;
 
-----------
 
I don't know how to set the current focus to the group. :(
Link to comment
Share on other sites

 Share

  • Recently Browsing   0 members

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