Woken.Update C# (CSharp) 메소드

Update() 공개 메소드

public Update ( ) : void
리턴 void
    void Update()
    {
        // Call update to suspicion meter if santa hits the AI
        if (woken)
        {
            // Set the animator parameter "Woken" to whether if santa has hit the AI.
            anim.SetBool("Woken", woken);

            StartCoroutine(PersonSeen());

        }
    }