Skip to content

Commit

Permalink
blender addon: fixed (just commented) double "splitRenderLayers_descr…
Browse files Browse the repository at this point in the history
…iption" initialization.

It is not needed, it doubles "splitRenderLayers : ... , description: ..."".
I do not know how it happens.
I do not know why it works in Blender < 2.93.
I do not know why it does not work in Blender == 2.93, - it raises an error on addon initialization.
  • Loading branch information
timurhai committed Mar 9, 2021
1 parent 03dc23c commit b86bf24
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions examples/blender/.gitignore
@@ -0,0 +1 @@
render
6 changes: 3 additions & 3 deletions plugins/blender/addons/cgru_tools/properties.py
Expand Up @@ -42,9 +42,9 @@ class CGRUProperties(bpy.types.PropertyGroup):
name='Pack Textures',
description='Pack all Textures into the Blend File',
default=0)
splitRenderLayers_description : "Split Render layer in blocks. " + \
"Warning: this option disable post-processing passes " + \
"(compositing nor seqeuncer are execute)"
# splitRenderLayers_description : "Split Render layer in blocks. " + \
# "Warning: this option disable post-processing passes " + \
# "(compositing nor seqeuncer are execute)"
splitRenderLayers : BoolProperty(
name='Split Render Layers',
description="Split Render layer in blocks. " + \
Expand Down

0 comments on commit b86bf24

Please sign in to comment.