2023-11-21 08:57:37 +00:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class Status_Idle : AssistantStatus
|
|
|
|
{
|
|
|
|
public override void EnterState()
|
|
|
|
{
|
|
|
|
base.EnterState();
|
|
|
|
assistant.animController.Idle();
|
|
|
|
assistant.EnableVoiceWakeup = true;
|
2023-11-24 10:15:34 +00:00
|
|
|
assistant.chatBox.SetText("Idle...", assistant.expression);
|
2023-11-21 08:57:37 +00:00
|
|
|
}
|
|
|
|
public override void QuitState()
|
|
|
|
{
|
|
|
|
base.QuitState();
|
|
|
|
}
|
|
|
|
public override void Update()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|