/// /// クリック時に表示されるモーダルUIキャンバス /// component ClickDisplayModalCanvas { private const string LayerName_Modal = "ClickDisplayModal"; private const string ButtonName_BG = "clickmodal_bg"; private const string ButtonName_ClosePage = "clickmodal_closebutton"; /// /// コンストラクタ /// public ClickDisplayModalCanvas() { } /// /// ボタンのクリック時コールバック /// public void OnClickedButton(string layerName, string buttonName) { if (LayerName_Modal != layerName) { return; } bool isPortrait = hsCanvasIsPortrait(); if (buttonName == ButtonName_ClosePage || buttonName == ButtonName_BG) { hsCanvasSetLayerShow(LayerName_Modal, false); } } }