リファレンス URL:view_enabled
「ブーリアン (Boolean) 」として値取得/設定。 This variable controls whether any views that are visible within the room are enabled or not. If you have views visible and then disable this option, the whole room will be drawn to the screen scaled to the window size. スクリプトから設定する方法が分からなくて探すのに時間がかかった。 ルームエディターのViews
から設定する場合は以下チェックボックスに相当。 ブーリアンだが関数的な役割もある。true
の場合は View の描画をオンに、false
の場合はオフに。 オフの場合は Views へ加えられたあらゆる変更が描画結果には反映されない。 スクリプト・サンプルif !view_enabled
{
view_visible[0] = true;
view_enabled = true;
};
Variables (Global) /view_enabled