This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
Blobledoodes/objects/obj_blobleshoot_down/Create_0.gml
2019-07-24 15:39:07 -06:00

22 lines
No EOL
271 B
Text

image_speed = 0
image_index = 0
if mouse_check_button(mb_left) && position_meeting(mouse_x, mouse_y, id)
{
with obj_blobleshoot_launchertube
{
image_angle -=1
}
}
if keyboard_check(vk_down)
{
with obj_blobleshoot_launchertube
{
image_angle -=1
}
}