thsj2022/objects/obj_camera/Create_0.gml

12 lines
168 B
Plaintext
Raw Normal View History

2022-08-22 23:53:47 -07:00
target = obj_player_cirno;
target_camera_x = 0;
target_camera_y = 0;
if ( instance_exists(target) ) {
2022-08-22 23:53:47 -07:00
target_camera_x = target.x;
target_camera_y = target.y;
}
2022-08-22 23:53:47 -07:00