예제 #1
0
    //Pause Menu

    // Use this for initialization
    void Start()
    {
        logScreenInterface = LogScreenInterface.inst;
        if (logScreenInterface == null)
        {
            Debug.Log("logScreenInterface Has Not Been Found in " + gameObject.name);
        }

        logScreenInterface.SetButtonsInteractable(false);
    }
예제 #2
0
 public void TurnFoodDropButtonsBackOn()
 {
     logScreenInterface.SetButtonsInteractable(true);
 }