20 lines
398 B
C#
20 lines
398 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class Status_Thinking : AssistantStatus
|
||
|
{
|
||
|
|
||
|
public override void EnterState()
|
||
|
{
|
||
|
base.EnterState();
|
||
|
assistant.animController.Thinking();
|
||
|
assistant.EnableVoiceWakeup = false;
|
||
|
assistant.textMeshPro.text = "Thinking...";
|
||
|
}
|
||
|
|
||
|
public override void Update()
|
||
|
{
|
||
|
}
|
||
|
}
|