remove poll on autobuild
1.6.3 - changed: remove poll check on autobuild operatormain
parent
b973668f02
commit
248f686e78
|
@ -14,6 +14,10 @@ Activate / deactivate layer opacity according to prefix
|
||||||
Activate / deactivate all masks using MA layers
|
Activate / deactivate all masks using MA layers
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
1.6.3
|
||||||
|
|
||||||
|
- changed: remove poll check on autobuild operator
|
||||||
|
|
||||||
1.6.2
|
1.6.2
|
||||||
|
|
||||||
- changed: Default fileout format changed from `OPEN_EXR` to `OPEN_EXR_MULTILAYER` (a `FILE_FORMAT` env variable can be set to specify nodes format)
|
- changed: Default fileout format changed from `OPEN_EXR` to `OPEN_EXR_MULTILAYER` (a `FILE_FORMAT` env variable can be set to specify nodes format)
|
||||||
|
|
|
@ -63,9 +63,9 @@ class GPEXP_OT_render_auto_build(bpy.types.Operator):
|
||||||
bl_description = "Trigger all operation to make build render scene with default settings"
|
bl_description = "Trigger all operation to make build render scene with default settings"
|
||||||
bl_options = {"REGISTER"}
|
bl_options = {"REGISTER"}
|
||||||
|
|
||||||
@classmethod
|
# @classmethod
|
||||||
def poll(cls, context):
|
# def poll(cls, context):
|
||||||
return context.object and context.object.type == 'GPENCIL'
|
# return context.object and context.object.type == 'GPENCIL'
|
||||||
|
|
||||||
# timer : bpy.props.FloatProperty(default=0.1, options={'SKIP_SAVE'})
|
# timer : bpy.props.FloatProperty(default=0.1, options={'SKIP_SAVE'})
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ bl_info = {
|
||||||
"name": "GP Render",
|
"name": "GP Render",
|
||||||
"description": "Organise export of gp layers through compositor output",
|
"description": "Organise export of gp layers through compositor output",
|
||||||
"author": "Samuel Bernou",
|
"author": "Samuel Bernou",
|
||||||
"version": (1, 6, 2),
|
"version": (1, 6, 3),
|
||||||
"blender": (3, 0, 0),
|
"blender": (3, 0, 0),
|
||||||
"location": "View3D",
|
"location": "View3D",
|
||||||
"warning": "",
|
"warning": "",
|
||||||
|
|
Loading…
Reference in New Issue