コード例 #1
0
ファイル: TooltipManager.cs プロジェクト: HebaruSan/AT_Utils
 void Awake()
 {
     if (instance != null)
     {
         Destroy(this);
         return;
     }
     instance = this;
     DontDestroyOnLoad(gameObject);
     tooltipWindow = new TooltipWindow();
     tooltipWindow.Show(this);
 }
コード例 #2
0
 void Awake()
 {
     tooltipWindow = new TooltipWindow();
     tooltipWindow.Show(this);
 }
コード例 #3
0
 void Awake()
 {
     tooltipWindow.Show(this);
 }