2026-05-06 15:07:56 +02:00
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|