|
1
|
instance_create(create_x - thickness, create_y - thickness, obj_attack_boundary_box);
|
|
2
|
global.id_store.image_xscale = thickness + (width / 2);
|
|
3
|
global.id_store.image_yscale = thickness / 2;
|
|
4
|
global.id_store.unique_id = unique_id;
|
|
5
|
instance_create(create_x - thickness, create_y + height, obj_attack_boundary_box);
|
|
6
|
global.id_store.image_xscale = thickness + (width / 2);
|
|
7
|
global.id_store.image_yscale = thickness / 2;
|
|
8
|
global.id_store.unique_id = unique_id;
|
|
9
|
instance_create(create_x - thickness, create_y, obj_attack_boundary_box);
|
|
10
|
global.id_store.image_xscale = thickness / 2;
|
|
11
|
global.id_store.image_yscale = height / 2;
|
|
12
|
global.id_store.unique_id = unique_id;
|
|
13
|
instance_create(create_x + width, create_y, obj_attack_boundary_box);
|
|
14
|
global.id_store.image_xscale = thickness / 2;
|
|
15
|
global.id_store.image_yscale = height / 2;
|
|
16
|
global.id_store.unique_id = unique_id;
|