dont report fill disable
0.9.1 - change: stop reporting all use light disable on `check layer` (too many messages)main
parent
3aa8ccccfe
commit
04093cad39
|
@ -14,6 +14,10 @@ Activate / deactivate layer opaticty according to prefix
|
||||||
Activate / deactivate all masks using MA layers
|
Activate / deactivate all masks using MA layers
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
0.9.1
|
||||||
|
|
||||||
|
- change: stop reporting all use light disable on `check layer` (too many messages)
|
||||||
|
|
||||||
0.9.0
|
0.9.0
|
||||||
|
|
||||||
- feat: Renumber objects prefix according to origin point depth, and button to remove
|
- feat: Renumber objects prefix according to origin point depth, and button to remove
|
||||||
|
|
|
@ -118,11 +118,10 @@ class GPEXP_OT_layers_state(bpy.types.Operator):
|
||||||
used = True
|
used = True
|
||||||
|
|
||||||
if l.use_lights:
|
if l.use_lights:
|
||||||
|
|
||||||
use_lights_state = '' if self.set_use_lights else ' (check only)'
|
use_lights_state = '' if self.set_use_lights else ' (check only)'
|
||||||
mess = f'{l.info} : disable use lights{use_lights_state}'
|
mess = f'{l.info} : disable use lights{use_lights_state}'
|
||||||
print(mess)
|
print(mess)
|
||||||
changes.append(mess)
|
# changes.append(mess) # don't report disable use_light... too many messages
|
||||||
if self.set_use_lights:
|
if self.set_use_lights:
|
||||||
l.use_lights = False
|
l.use_lights = False
|
||||||
used = True
|
used = True
|
||||||
|
|
|
@ -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": (0, 9, 0),
|
"version": (0, 9, 1),
|
||||||
"blender": (2, 93, 0),
|
"blender": (2, 93, 0),
|
||||||
"location": "View3D",
|
"location": "View3D",
|
||||||
"warning": "",
|
"warning": "",
|
||||||
|
|
Loading…
Reference in New Issue