mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-06 01:00:16 +00:00
12 lines
365 B
C#
12 lines
365 B
C#
namespace QSB.Animation.NPC.WorldObjects
|
|
{
|
|
internal class QSBSolanumController : NpcAnimController<NomaiConversationManager>
|
|
{
|
|
public override CharacterDialogueTree GetDialogueTree()
|
|
=> AttachedObject._characterDialogueTree;
|
|
|
|
public override bool InConversation()
|
|
=> AttachedObject._solanumAnimController._animator.GetBool("ListeningToPlayer");
|
|
}
|
|
}
|