View difference between Paste ID: venLtmSK and x3VUtqHK
SHOW: | | - or go back to the newest paste.
1
///mouse_within( x1, y1, x2, y2 )
2
// returns true if the mouse is within the specified area
3
4
return ((mouse_x > argument0) && (mouse_x < argument2)) && ((mouse_y > argument1) && (mouse_y < argument3))