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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2017-12-01 17:23:05 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-12-01 19:15:54 +0300
commitaeaf87bbeb011e9a571eefa12d81fa6fb2b8bd5b (patch)
tree895f28e2650a2436ebbf8f699d838d71c83d9d5b /tests/python/view_layer/test_group_c.py
parentbe9e469ead227aee8d4c29b98a125cf599c5c8bb (diff)
Groups and collection: create group from collection
You could still create groups as before, with Ctl + G. This will create a group with a single visible collection. However you can also create a group from an existing collection. Just go to the menu you get in the outliner when clicking in a collection and pick "Create Group". Remember to instance the group afterwards, or link it into a new scene or file. The group and the collection are not kept in sync afterwards. You need to manually edit the group for further changes.
Diffstat (limited to 'tests/python/view_layer/test_group_c.py')
-rw-r--r--tests/python/view_layer/test_group_c.py56
1 files changed, 56 insertions, 0 deletions
diff --git a/tests/python/view_layer/test_group_c.py b/tests/python/view_layer/test_group_c.py
new file mode 100644
index 00000000000..69feab1a56e
--- /dev/null
+++ b/tests/python/view_layer/test_group_c.py
@@ -0,0 +1,56 @@
+# ############################################################
+# Importing - Same For All Render Layer Tests
+# ############################################################
+
+import unittest
+import os
+import sys
+
+from view_layer_common import *
+
+
+# ############################################################
+# Testing
+# ############################################################
+
+class UnitTesting(ViewLayerTesting):
+ def test_group_create_basic(self):
+ """
+ More advanced creation of group from a collection not directly linked
+ to the scene layer.
+ """
+ import bpy
+ scene = bpy.context.scene
+
+ # clean slate
+ self.cleanup_tree()
+
+ children = [bpy.data.objects.new("Child", None) for i in range(3)]
+ master_collection = scene.master_collection
+
+ grandma_scene_collection = master_collection.collections.new('Grand-Mother')
+ mom_scene_collection = grandma_scene_collection.collections.new('Mother')
+
+ grandma_scene_collection.objects.link(children[0])
+ mom_scene_collection.objects.link(children[1])
+
+ grandma_layer_collection = scene.view_layers[0].collections.link(grandma_scene_collection)
+ mom_layer_collection = grandma_layer_collection.collections[mom_scene_collection.name]
+
+ # update depsgraph
+ scene.update()
+
+ # create group
+ group = mom_layer_collection.create_group()
+
+ # update depsgraph
+ scene.update()
+
+
+# ############################################################
+# Main - Same For All Render Layer Tests
+# ############################################################
+
+if __name__ == '__main__':
+ UnitTesting._extra_arguments = setup_extra_arguments(__file__)
+ unittest.main()