You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
394 B
29 lines
394 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Toolbar : MonoBehaviour
|
|
{
|
|
|
|
private CanvasGroup bar;
|
|
|
|
void Start()
|
|
{
|
|
bar = this.GetComponent<CanvasGroup>();
|
|
}
|
|
|
|
public void EnterUIShow()
|
|
{
|
|
bar.alpha = 1;
|
|
}
|
|
|
|
public void ExitUIHide()
|
|
{
|
|
bar.alpha = 0;
|
|
}
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|