Fix incorrect index usage in path string construction in PostImportPluginSkeletonRestFixer
This commit is contained in:
parent
a19892054e
commit
49bf7b32ef
1 changed files with 1 additions and 1 deletions
|
|
@ -604,7 +604,7 @@ void PostImportPluginSkeletonRestFixer::internal_process(InternalImportCategory
|
|||
Vector<StringName> names = anim->track_get_path(i).get_names();
|
||||
names.remove_at(0);
|
||||
for (int j = 0; j < names.size(); j++) {
|
||||
path_string += "/" + names[i].operator String();
|
||||
path_string += "/" + names[j].operator String();
|
||||
}
|
||||
}
|
||||
if (anim->track_get_path(i).get_subname_count() > 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue