リファレンス URL:room_set_view_enabled( ind, val );
戻り値無し (Returns: N/A) Sets whether views are enabled or not in a given room. 第一引数に Room のインデックスを指定し、第二引数に true/false いずれかを与える。 With this function you can enable (true) or disable (false) the view of any room within your game except the current one. スクリプト・サンプルglobal.myroom = room_add();
room_set_view_enabled(global.myroom, true);
Functions/room_set_view_enabled