i'd like to draw something over my sprite when the mouse is on it. Something like that (in the draw event of my object) :
if(ev_mouse_enter)draw_text(x,y,hp);
But it's not working (i know why). I've been thinking about using some boolean to counter that. Is it my only option ?