akorukmez Posted August 28, 2013 Share Posted August 28, 2013 Hello members.I working on simple zombie survival game.I have to do making simple health bar for game player.How to do this? Quote Link to comment Share on other sites More sharing options...
Chris Posted August 28, 2013 Share Posted August 28, 2013 Do you want to display it inside a canvas, or as a DOM element? akorukmez 1 Quote Link to comment Share on other sites More sharing options...
AhmedElyamani Posted August 28, 2013 Share Posted August 28, 2013 var health=100; ctx.fillStyle="#FF0000"; ctx.fillRect(0,0,(health/100)*140,25); //Whenever you lose health health-=1; akorukmez 1 Quote Link to comment Share on other sites More sharing options...
akorukmez Posted August 28, 2013 Author Share Posted August 28, 2013 Do you want to display it inside a canvas, or as a DOM element? var health=100;ctx.fillStyle="#FF0000";ctx.fillRect(0,0,(health/100)*140,25);//Whenever you lose healthhealth-=1;Chris i want simple healthbar like this.Thanks for interest.Also ahmed thanks i want to this 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.