20 lines
362 B
C#
20 lines
362 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace UMA.Examples
|
|
{
|
|
public class DemoTextHelper : MonoBehaviour
|
|
{
|
|
public GameObject Panel;
|
|
|
|
public void Activate(bool active)
|
|
{
|
|
if(Panel != null)
|
|
{
|
|
Panel.SetActive(active);
|
|
}
|
|
}
|
|
}
|
|
}
|