Merge pull request #172 from limbonaut/fix-btplayer-restart-crash

Fix BTPlayer.restart() crash
This commit is contained in:
Serhii Snitsaruk 2024-07-30 13:46:51 +02:00 committed by GitHub
commit 17eb029497
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -144,6 +144,7 @@ void BTPlayer::update(double p_delta) {
}
void BTPlayer::restart() {
ERR_FAIL_COND_MSG(tree_instance.is_null(), "BTPlayer: Restart failed - no valid tree instance. Make sure the BTPlayer has a valid behavior tree with a valid root task.");
tree_instance->abort();
set_active(true);
}