obj
circle
icon = 'icons.dmi'; icon_state = "circle"
MouseEntered(A,B,C)
if(C == "left")
if(src.icon_state == "circle")
src.icon_state = "circle2"
else
src.icon_state = "circle"
else
return
Problem description:
I want it to allow the user to click+drag to draw lines, but it isn't working. C is supposed to be the params argument, as stated in the DM Reference, but when I drag on the screen, it all stays blank.
And if you want Click + Drag why use MouseEntered()?
Be more specific.