The RenderResult struct still has a listbase of RenderLayer, but that's ok since this is strictly for rendering. * Subversion bump (to 2.80.2) * DNA low level doversion (renames) - only for .blend created since 2.80 started Note: We can't use DNA_struct_elem_find or get file version in init_structDNA, so we are manually iterating over the array of the SDNA elements instead. Note 2: This doversion change with renames can be reverted in a few months. But so far it's required for 2.8 files created between October 2016 and now. Reviewers: campbellbarton, sergey Differential Revision: https://developer.blender.org/D2927
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
# ############################################################
|
|
# Importing - Same For All Render Layer Tests
|
|
# ############################################################
|
|
|
|
import unittest
|
|
import os
|
|
import sys
|
|
|
|
from view_layer_common import *
|
|
|
|
|
|
# ############################################################
|
|
# Testing
|
|
# ############################################################
|
|
|
|
class UnitTesting(ViewLayerTesting):
|
|
def test_selectability(self):
|
|
import bpy
|
|
scene = bpy.context.scene
|
|
|
|
cube = bpy.data.objects.new('guinea pig', bpy.data.meshes.new('mesh'))
|
|
scene_collection = scene.master_collection.collections.new('collection')
|
|
layer_collection = scene.view_layers.active.collections.link(scene_collection)
|
|
|
|
bpy.context.scene.update() # update depsgraph
|
|
|
|
scene_collection.objects.link(cube)
|
|
|
|
self.assertFalse(layer_collection.hide)
|
|
self.assertFalse(layer_collection.hide_select)
|
|
|
|
bpy.context.scene.update() # update depsgraph
|
|
cube.select_set(action='SELECT')
|
|
self.assertTrue(cube.select_get())
|
|
|
|
|
|
# ############################################################
|
|
# Main - Same For All Render Layer Tests
|
|
# ############################################################
|
|
|
|
if __name__ == '__main__':
|
|
UnitTesting._extra_arguments = setup_extra_arguments(__file__)
|
|
unittest.main()
|