A question about bark
Posted: Mon Feb 10, 2025 1:56 pm
Hello, I'm back again. This time my question is that I added some characters generated by prefabs in the scene. I added the DialogueActor component to these characters and also added the Dialogue Manager to the scene. Then, I used an action from Behavior Designer, the code looks something like this:
However, when the character runs, it gives me the following prompt:
MissingReferenceException: The object of type 'PixelCrushers.DialogueSystem.Wrappers.StandardBarkUI' has been destroyed but you are still trying to access it.
Your script should either check if it is null or you should not destroy the object.
Could you please help me figure out what the issue is?
Code: Select all
public override void OnStart()
{
BarkDialogue(); // Automatically triggers the dialogue
}
// Implement the Bark functionality
private void BarkDialogue()
{
DialogueManager.Bark("Bark", transform); // Trigger Bark
}
// You can implement other logic for the Task here
public override TaskStatus OnUpdate()
{
return TaskStatus.Success;
}
MissingReferenceException: The object of type 'PixelCrushers.DialogueSystem.Wrappers.StandardBarkUI' has been destroyed but you are still trying to access it.
Your script should either check if it is null or you should not destroy the object.
Could you please help me figure out what the issue is?