thundahguy Posted July 14, 2017 Report Share Posted July 14, 2017 I'm expanding the phaser tutorial game and i want to add health to the character plus use a plugin i found (https://github.com/matthiaswh/phaser-health-meter). http://phaser.io/docs/2.4.3/Phaser.Component.Health.html I understand nothing in the documentation and i'm clueless on how to add health. Quote Link to comment Share on other sites More sharing options...
Vvalent Posted July 14, 2017 Report Share Posted July 14, 2017 You may want to check out a more recent version of the docs. You could use the setHealth method, or simply set the "health" property directly. var sprite = game.add.sprite(0,0, 'texture'); sprite.health = 50; sprite.setHealth(50); Quote Link to comment Share on other sites More sharing options...
danteAGAIN Posted July 14, 2017 Report Share Posted July 14, 2017 4 hours ago, thundahguy said: I'm expanding the phaser tutorial game and i want to add health to the character plus use a plugin i found (https://github.com/matthiaswh/phaser-health-meter). http://phaser.io/docs/2.4.3/Phaser.Component.Health.html I understand nothing in the documentation and i'm clueless on how to add health. Download the file HealthMeter.js and put the file in your game (dont remember to add the file html //// script src="../healthMeter.js"). you can see a exemple on gitHub , https://github.com/matthiaswh/phaser-health-meter/blob/master/examples/example.js , line (79-92) . Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.