CollectState.update C# (CSharp) Method

update() public method

public update ( ) : bool
return bool
    public override bool update()
    {

        if(Input.GetKeyUp(KeyCode.Space))
        {

            //Turn pop-up off
            return true;

        }

        return false;

    }