2022-01-12 20:58:38 -08:00
|
|
|
|
namespace QSB.Animation.NPC.WorldObjects
|
2021-04-26 14:30:21 +01:00
|
|
|
|
{
|
2021-04-29 18:30:45 +01:00
|
|
|
|
internal class QSBCharacterAnimController : NpcAnimController<CharacterAnimController>
|
2021-04-26 14:30:21 +01:00
|
|
|
|
{
|
2022-01-25 23:40:38 -08:00
|
|
|
|
public override void SendInitialState(uint to)
|
2022-01-25 21:08:04 -08:00
|
|
|
|
{
|
2022-01-25 21:32:43 -08:00
|
|
|
|
// todo SendResyncInfo
|
2022-01-25 21:08:04 -08:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-19 11:26:05 +01:00
|
|
|
|
public override CharacterDialogueTree GetDialogueTree()
|
2021-11-23 08:41:05 +00:00
|
|
|
|
=> AttachedObject._dialogueTree;
|
2021-04-29 20:59:25 +01:00
|
|
|
|
|
2021-06-19 11:26:05 +01:00
|
|
|
|
public override bool InConversation()
|
2021-11-23 08:41:05 +00:00
|
|
|
|
=> AttachedObject._inConversation;
|
2021-04-26 14:30:21 +01:00
|
|
|
|
}
|
|
|
|
|
}
|