HideBar.cs
297 Bytes
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using System;
public class HideBar : MonoBehaviour {
private bool show = true;
//Mostra e esconde a box de resolucao do player
public void show_n_hide(){
show = !show;
gameObject.SetActive(show);
}
}