예제 #1
0
 /// <summary>
 /// 調べる時のアイコン
 /// </summary>
 public void ShowIcon()
 {
     if (isPossible)
     {
         ExamineIconManager.ShowIcon(ExamineIconManager.IconType.Check);
     }
 }
예제 #2
0
 /// <summary>
 /// アイコンを表示
 /// </summary>
 public void GetIconSprite()
 {
     if (isPossible)
     {
         ExamineIconManager.ShowIcon(ExamineIconManager.IconType.GotoNextStage);
     }
 }
예제 #3
0
 /// <summary>
 /// 右クリックで掴むアイコンを表示
 /// </summary>
 public void GetIconSprite()
 {
     if (isPossible)
     {
         ExamineIconManager.ShowIcon(ExamineIconManager.IconType.Hold);
     }
 }
예제 #4
0
    /// <summary>
    /// Eキーで調べるアイコンを表示
    /// </summary>
    public void GetIconSprite()
    {
        // 取得不可能、もしくは取得済みならreturn
        if (!_isAcquisition || !IsShow)
        {
            return;
        }

        if (item == Items.CardKey)
        {
            ExamineIconManager.ShowIcon(ExamineIconManager.IconType.TakeCardKey);
        }
        else
        {
            ExamineIconManager.ShowIcon(ExamineIconManager.IconType.Check);
        }
    }