都市開放演出時に閉じるボタン無効化
This commit is contained in:
parent
d034e55228
commit
6cd96f00c8
|
@ -194,6 +194,7 @@ namespace MyGame.Scenes.WorldMap.Scripts
|
|||
shareGate = false;
|
||||
earningView.gameObject.SetActive(false);
|
||||
fundingView.gameObject.SetActive(false);
|
||||
closeButton.interactable = false;
|
||||
cityIcon.PlayAnimation(() =>
|
||||
{
|
||||
cityIcon.SetState(CityState.Release);
|
||||
|
@ -203,6 +204,7 @@ namespace MyGame.Scenes.WorldMap.Scripts
|
|||
// popup表示
|
||||
earningView.gameObject.SetActive(true);
|
||||
fundingView.gameObject.SetActive(false);
|
||||
closeButton.interactable = true;
|
||||
shareGate = true;
|
||||
|
||||
// closeボタン押下時でも新店舗に行くための設定
|
||||
|
|
Loading…
Reference in New Issue