22 lines
408 B
Text
22 lines
408 B
Text
if mouse_check_button(mb_left) && position_meeting(mouse_x, mouse_y, id)
|
|
{
|
|
with obj_blobleshoot_launchertube
|
|
{
|
|
|
|
image_angle +=1
|
|
if image_angle >= 360 {image_angle = 360}
|
|
if image_angle <= 270 {image_angle = 270}
|
|
}
|
|
}
|
|
|
|
if keyboard_check(vk_up)
|
|
{
|
|
with obj_blobleshoot_launchertube
|
|
{
|
|
|
|
image_angle +=1
|
|
if image_angle >= 360 {image_angle = 360}
|
|
if image_angle <= 270 {image_angle = 270}
|
|
}
|
|
}
|
|
|