1
Fork 0
mirror of https://github.com/Steffo99/stack.git synced 2024-11-23 00:14:19 +00:00
stack/scripts/scrcursor.gml

9 lines
283 B
Text
Raw Normal View History

2013-07-16 17:57:24 +00:00
if (selected = 10)
{
draw_sprite_ext(object_get_sprite(stack_names[selected]), 0, floor((mouse_x div 32))*32,floor((mouse_y div 32))*32, 1, 1, 0, c_white, 0.4);
}
else
{
draw_sprite_ext(object_get_sprite(stack_names[selected]), 0, mouse_x, mouse_y, 1, 1, 0, c_white, 0.4);
}