Exemple #1
0
    void FixedUpdate()
    {
        //Updates instruction text at the top.
        if (scriptInstance == null)
        {
            scriptInstance = this;
        }

        if (BingoManager.isReady() == false)
        {
            DisplayText.text = NotReadyText;
        }
        else
        {
            DisplayText.text = PressReadyText;
        }
    }
Exemple #2
0
 void Start()
 {
     scriptInstance = this;
 }