20 lines
417 B
C#
20 lines
417 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.chatBox.SetText("Thinking...",assistant.expression);
|
|
}
|
|
|
|
public override void Update()
|
|
{
|
|
}
|
|
}
|