Example #1
0
    /*
     * void OnCollisionEnter(Collider other)
     * {
     *  Debug.Log("お店に入りました collision");
     *  pauseScript.DispShoping(talkPanel);
     *
     * }
     */

    void OnTriggerEnter(Collider other)
    {
        if (other.tag == "Player")
        {
            Debug.Log("お店に入りました triger");
            pauseScript.DispShoping(talkPanel);
        }
    }