2022-03-02 19:46:33 -08:00
|
|
|
|
namespace QSB.Animation.NPC.WorldObjects;
|
|
|
|
|
|
|
|
|
|
internal class QSBCharacterAnimController : NpcAnimController<CharacterAnimController>
|
2021-04-26 14:30:21 +01:00
|
|
|
|
{
|
2022-03-02 19:46:33 -08:00
|
|
|
|
public override void SendInitialState(uint to)
|
2021-04-26 14:30:21 +01:00
|
|
|
|
{
|
2022-03-02 19:46:33 -08:00
|
|
|
|
// todo SendInitialState
|
|
|
|
|
}
|
2022-01-25 21:08:04 -08:00
|
|
|
|
|
2022-03-02 19:46:33 -08:00
|
|
|
|
public override CharacterDialogueTree GetDialogueTree()
|
|
|
|
|
=> AttachedObject._dialogueTree;
|
2021-04-29 20:59:25 +01:00
|
|
|
|
|
2022-03-02 19:46:33 -08:00
|
|
|
|
public bool InConversation()
|
|
|
|
|
=> AttachedObject._inConversation;
|
2022-02-24 22:04:54 -08:00
|
|
|
|
}
|