Ejemplo n.º 1
0
 public void BE_Clue3()
 {
     SoundManager.Instance.Play_effect(0);
     if (Btns_clue[1].GetComponent <Image>().sprite.Equals(Sprites_clue[4]))
     {
         B_aircap.SetActive(true);
         Btns_clue[2].GetComponent <Image>().sprite = Sprites_clue[0];
         Btns_clue[2].interactable = false;
     }
     else
     {
         AC.Advice("차례대로 진행해주세요.");
     }
 }
Ejemplo n.º 2
0
    //창문에 뽁뽁이 붙이기
    public bool DE_Aircap()
    {
        target = GetClickedObject();
        if (target == null)
        {
            return(false);
        }

        if (target.name.Equals("window") == false)
        {
            return(false);
        }

        win_aircap.SetActive(true);
        B_aircap.SetActive(false);
        Clear_Clue(3);
        AC.Dialog_and_Advice("play2_3");
        return(true);
    }