You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
330 B
16 lines
330 B
enemy_death2()
|
|
i = 0
|
|
repeat (36)
|
|
{
|
|
prj = instance_create(x, y, oRoboMineProj)
|
|
prj.direction = (i * 10)
|
|
prj.speed = 3
|
|
prj = instance_create(x, y, oRoboMineProj)
|
|
prj.direction = (i * 10)
|
|
prj.speed = 2
|
|
prj = instance_create(x, y, oRoboMineProj)
|
|
prj.direction = (i * 10)
|
|
prj.speed = 1
|
|
i += 1
|
|
}
|