Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorLucas Boutrot <thornydre>2018-12-07 02:43:07 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-12-07 02:57:20 +0300
commitd40bffa17f6dabac3f4aef229d11824c2554bba3 (patch)
tree1da528cb7b4c10485ec299712aeb10bbc02a146f /intern
parent5fdf739e7f2076bdb00f67fabfa1e1ff49c5db70 (diff)
UI: add material settings in shader editor sidebar.
Differential Revision: https://developer.blender.org/D3926
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/ui.py79
1 files changed, 64 insertions, 15 deletions
diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index afd13b304ce..b276d0bee10 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -54,6 +54,16 @@ class CyclesButtonsPanel:
return context.engine in cls.COMPAT_ENGINES
+class CyclesNodeButtonsPanel:
+ bl_space_type = "NODE_EDITOR"
+ bl_region_type = "UI"
+ COMPAT_ENGINES = {'CYCLES'}
+
+ @classmethod
+ def poll(cls, context):
+ return context.engine in cls.COMPAT_ENGINES
+
+
def get_device_type(context):
return context.user_preferences.addons[__package__].preferences.compute_device_type
@@ -1668,31 +1678,29 @@ class CYCLES_MATERIAL_PT_settings(CyclesButtonsPanel, Panel):
def poll(cls, context):
return context.material and CyclesButtonsPanel.poll(context)
- def draw(self, context):
+ @staticmethod
+ def draw_shared(self, mat):
layout = self.layout
layout.use_property_split = True
layout.use_property_decorate = False
- mat = context.material
-
layout.prop(mat, "pass_index")
+ def draw(self, context):
+ self.draw_shared(self, context.material)
+
class CYCLES_MATERIAL_PT_settings_surface(CyclesButtonsPanel, Panel):
bl_label = "Surface"
bl_parent_id = "CYCLES_MATERIAL_PT_settings"
bl_context = "material"
- @classmethod
- def poll(cls, context):
- return context.material and CyclesButtonsPanel.poll(context)
-
- def draw(self, context):
+ @staticmethod
+ def draw_shared(self, mat):
layout = self.layout
layout.use_property_split = True
layout.use_property_decorate = False
- mat = context.material
cmat = mat.cycles
col = layout.column()
@@ -1700,22 +1708,21 @@ class CYCLES_MATERIAL_PT_settings_surface(CyclesButtonsPanel, Panel):
col.prop(cmat, "use_transparent_shadow")
col.prop(cmat, "displacement_method", text="Displacement Method")
+ def draw(self, context):
+ self.draw_shared(self, context.material)
+
class CYCLES_MATERIAL_PT_settings_volume(CyclesButtonsPanel, Panel):
bl_label = "Volume"
bl_parent_id = "CYCLES_MATERIAL_PT_settings"
bl_context = "material"
- @classmethod
- def poll(cls, context):
- return context.material and CyclesButtonsPanel.poll(context)
-
- def draw(self, context):
+ @staticmethod
+ def draw_shared(self, context, mat):
layout = self.layout
layout.use_property_split = True
layout.use_property_decorate = False
- mat = context.material
cmat = mat.cycles
col = layout.column()
@@ -1725,6 +1732,9 @@ class CYCLES_MATERIAL_PT_settings_volume(CyclesButtonsPanel, Panel):
col.prop(cmat, "volume_interpolation", text="Interpolation")
col.prop(cmat, "homogeneous_volume", text="Homogeneous")
+ def draw(self, context):
+ self.draw_shared(self, context, context.material)
+
class CYCLES_RENDER_PT_bake(CyclesButtonsPanel, Panel):
bl_label = "Bake"
@@ -1959,6 +1969,42 @@ class CYCLES_RENDER_PT_simplify_culling(CyclesButtonsPanel, Panel):
sub.prop(cscene, "distance_cull_margin", text="Distance")
+class CYCLES_NODE_PT_settings(CyclesNodeButtonsPanel, Panel):
+ bl_label = "Settings"
+ bl_category = "Node"
+ bl_options = {'DEFAULT_CLOSED'}
+
+ @classmethod
+ def poll(cls, context):
+ snode = context.space_data
+ return CyclesNodeButtonsPanel.poll(context) and \
+ snode.tree_type == 'ShaderNodeTree' and snode.id
+
+ def draw(self, context):
+ material = context.space_data.id
+ CYCLES_MATERIAL_PT_settings.draw_shared(self, material)
+
+
+class CYCLES_NODE_PT_settings_surface(CyclesNodeButtonsPanel, Panel):
+ bl_label = "Surface"
+ bl_category = "Node"
+ bl_parent_id = "CYCLES_NODE_PT_settings"
+
+ def draw(self, context):
+ material = context.space_data.id
+ CYCLES_MATERIAL_PT_settings_surface.draw_shared(self, material)
+
+
+class CYCLES_NODE_PT_settings_volume(CyclesNodeButtonsPanel, Panel):
+ bl_label = "Volume"
+ bl_category = "Node"
+ bl_parent_id = "CYCLES_NODE_PT_settings"
+
+ def draw(self, context):
+ material = context.space_data.id
+ CYCLES_MATERIAL_PT_settings_volume.draw_shared(self, context, material)
+
+
def draw_device(self, context):
scene = context.scene
layout = self.layout
@@ -2087,6 +2133,9 @@ classes = (
CYCLES_MATERIAL_PT_settings_volume,
CYCLES_RENDER_PT_bake,
CYCLES_RENDER_PT_debug,
+ CYCLES_NODE_PT_settings,
+ CYCLES_NODE_PT_settings_surface,
+ CYCLES_NODE_PT_settings_volume,
)