Example #1
0
    void Update()
    {
        if (b_isHovering)
        {
            f_hoverTimer -= Time.deltaTime;
            if (f_hoverTimer <= 0)
            {
                b_isCompleted = true;
                fingersToLock.FinalizeHandExtents();

                c_this.enabled  = false;
                mr_this.enabled = false;

                if (otherStarter.IsCompleted)
                {
                    StartGame();
                }
            }
        }
    }