Merge pull request #83076 from SaracenOne/make_rest_fixer_tracks_imported

Set new SkeletonRestFixer tracks as imported
This commit is contained in:
Rémi Verschelde 2023-10-10 09:12:42 +02:00
commit fb6dc8c630
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -242,6 +242,7 @@ void PostImportPluginSkeletonRestFixer::internal_process(InternalImportCategory
if (rot_track == -1) {
int track = anim->add_track(Animation::TYPE_ROTATION_3D);
anim->track_set_path(track, insert_path);
anim->track_set_imported(track, true);
anim->rotation_track_insert_key(track, 0, src_skeleton->get_bone_rest(src_idx).basis.get_rotation_quaternion());
}
}