remove poll on autobuild

1.6.3

- changed: remove poll check on autobuild operator
main
pullusb 2024-03-27 18:15:17 +01:00
parent b973668f02
commit 248f686e78
3 changed files with 8 additions and 4 deletions

View File

@ -14,6 +14,10 @@ Activate / deactivate layer opacity according to prefix
Activate / deactivate all masks using MA layers
-->
1.6.3
- changed: remove poll check on autobuild operator
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)

View File

@ -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_options = {"REGISTER"}
@classmethod
def poll(cls, context):
return context.object and context.object.type == 'GPENCIL'
# @classmethod
# def poll(cls, context):
# return context.object and context.object.type == 'GPENCIL'
# timer : bpy.props.FloatProperty(default=0.1, options={'SKIP_SAVE'})

View File

@ -2,7 +2,7 @@ bl_info = {
"name": "GP Render",
"description": "Organise export of gp layers through compositor output",
"author": "Samuel Bernou",
"version": (1, 6, 2),
"version": (1, 6, 3),
"blender": (3, 0, 0),
"location": "View3D",
"warning": "",