Example #1
0
    void getInput()
    {
        if (Input.GetMouseButtonDown(0))
        {
            if (firstDrop)
            {
                print("did this work?");
                GameManager.instance.firstDrop();
                firstDrop = false;
            }

            if (_dropper.canDrop)
            {
                _dropper.dropObj();
            }
        }
    }