diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-08-06 08:50:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-06 08:50:36 +0200 |
commit | 9c84233bfb149f659ec958d5a4c51a915dc27f2c (patch) | |
tree | 4136ff4044d4857fb186d1d31fae60885ddf4e52 | |
parent | 7997a188caa21a2b26b6750b3038942d977cd95f (diff) | |
parent | 9d1979ba62d1e9d45342ca78b81cecbcba92cf9b (diff) |
Merge pull request #51290 from V-Sekai/less-reset-spam
Animation RESET spam less patch 2
-rw-r--r-- | editor/import/editor_importer_bake_reset.cpp | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/editor/import/editor_importer_bake_reset.cpp b/editor/import/editor_importer_bake_reset.cpp index 541eab4f40..00dce6850e 100644 --- a/editor/import/editor_importer_bake_reset.cpp +++ b/editor/import/editor_importer_bake_reset.cpp @@ -30,6 +30,7 @@ #include "editor/import/editor_importer_bake_reset.h" +#include "core/error/error_list.h" #include "core/error/error_macros.h" #include "core/math/transform_3d.h" #include "editor/import/scene_importer_mesh_node_3d.h" @@ -158,8 +159,13 @@ void BakeReset::_fetch_reset_animation(AnimationPlayer *p_ap, Map<StringName, Ba p_ap->get_animation_list(&anim_names); Node *root = p_ap->get_owner(); ERR_FAIL_NULL(root); + if (!p_ap->has_animation(p_bake_anim)) { + return; + } Ref<Animation> a = p_ap->get_animation(p_bake_anim); - ERR_FAIL_NULL(a); + if (a.is_null()) { + return; + } for (int32_t track = 0; track < a->get_track_count(); track++) { NodePath path = a->track_get_path(track); String string_path = path; @@ -173,7 +179,10 @@ void BakeReset::_fetch_reset_animation(AnimationPlayer *p_ap, Map<StringName, Ba Quaternion rot; Vector3 scale; Error err = a->transform_track_get_key(track, key_i, &loc, &rot, &scale); - ERR_CONTINUE(err); + if (err != OK) { + ERR_PRINT_ONCE("Reset animation baker can't get key."); + continue; + } rot.normalize(); Basis rot_basis = Basis(rot, scale); BakeResetRestBone rest_bone; |