Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <bastien@blender.org>2021-07-06 18:26:06 +0300
committerBastien Montagne <bastien@blender.org>2021-07-06 18:26:06 +0300
commit735cdeec78f654e20e63841c25e077c931242cc1 (patch)
tree288fd6ae39695cb2dd956924729ce58b13dbd9db /io_scene_fbx
parent6a2c44135019377ae124a0b358c8539f64057c11 (diff)
Update add-ons after renaming master collection IDs to 'Scene Collection'.
This mostly affects default names in object collection manager add-on.
Diffstat (limited to 'io_scene_fbx')
-rw-r--r--io_scene_fbx/export_fbx_bin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_fbx/export_fbx_bin.py b/io_scene_fbx/export_fbx_bin.py
index 65a5b8f1..bafdf1ef 100644
--- a/io_scene_fbx/export_fbx_bin.py
+++ b/io_scene_fbx/export_fbx_bin.py
@@ -3214,7 +3214,7 @@ def save(operator, context,
for scene in scenes:
if not scene.objects:
continue
- # Needed to avoid having tens of 'Master Collection' entries.
+ # Needed to avoid having tens of 'Scene Collection' entries.
todo_collections = [(scene.collection, "_".join((scene.name, scene.collection.name)))]
while todo_collections:
coll, coll_name = todo_collections.pop()