Beispiel #1
0
    private void OnTriggerEnter(Collider other)
    {
        if (other.tag != "PalmHoverCheck")
        {
            return;
        }

        if (hoverZone.IsReady)
        {
            altar.CombineElements();
        }
    }