sunflowers-in-the-rain/objects/obj_cutscene_boss/Collision_obj_marisa.gml

14 lines
307 B
Plaintext
Raw Normal View History

if (!global.cutscene_mode) {
2022-06-30 22:16:34 -07:00
yuuka = instance_create_layer(736, 608, "lyr_ground", obj_boss_yuuka );
with (yuuka) {
direction = 270;
}
lockcam = instance_nearest(x,y,obj_cutscene_camera);
global.cutscene_mode = true;
global.cutscene_number = CUTSCENE_BOSS;
timeline_index = tml_cutscene_boss;
}
2022-06-30 22:16:34 -07:00