Page 1 of 1

Canvas health bar!

PostPosted: Mon Jul 03, 2006 1:29 am
by Game A Gogo
yay, firts post in advance, well anyway, i need to know how to erase something drawn by a canvas.

in the create event i do this:
Code: Select all
setpen(0, 255, 255, 0, 4);

and in draw actor:
Code: Select all
moveto(0, 0);
lineto(width-1+HP1-28, 0);


what do i do when the HP1 decreases so it lower the bar?(erasing the rest of the bar, and if possible, make it fade out!!)

thx in advence to all!

PostPosted: Mon Jul 03, 2006 1:46 am
by DilloDude
In draw actor, set it check if the health has changed. Create a variable called prevHealth.
Code: Select all
if (HP1 > prevHealth)
{
    moveto(0, 0);
    lineto(width-1+HP1-28, 0);
}
else if (HP1 < prevHealth)
{
    erase(0, 0, 0, 0);
    moveto(0, 0);
    lineto(width-1+HP1-28, 0);
}
prevHealth = HP1

This will only update the health if it has changed, so it will not spend time drawing the same thing over again.

PostPosted: Mon Jul 03, 2006 3:26 pm
by Game A Gogo
thx, now i wont have to use activation events!

PostPosted: Mon Jul 03, 2006 3:30 pm
by Game A Gogo
oh and there supose to be a ";" at the end

PostPosted: Mon Jul 03, 2006 9:55 pm
by Game A Gogo
when i use that, its just put full black.
so i used:
Code: Select all
moveto(HP1/10,0)
lineto(width-1,0);

on when the actor gets hit

PostPosted: Thu Jul 06, 2006 9:33 am
by DilloDude
It should have been
Code: Select all
erase(0, 0, 0, 1);

PostPosted: Thu Jul 06, 2006 5:47 pm
by Game A Gogo
DilloDude wrote:It should have been
Code: Select all
erase(0, 0, 0, 1);

oh, yay, no more activation events!