From 0eb32ab22809d9c0c41bfff5082f58b1a7aa9965 Mon Sep 17 00:00:00 2001 From: Luca Rood Date: Tue, 9 May 2017 16:23:47 +0200 Subject: Implement hair drawing with Draw Manager in Clay engine Part of T51378 --- release/scripts/startup/bl_ui/properties_collection.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'release/scripts/startup/bl_ui/properties_collection.py') diff --git a/release/scripts/startup/bl_ui/properties_collection.py b/release/scripts/startup/bl_ui/properties_collection.py index dc02037586c..4e545778162 100644 --- a/release/scripts/startup/bl_ui/properties_collection.py +++ b/release/scripts/startup/bl_ui/properties_collection.py @@ -68,6 +68,16 @@ class COLLECTION_PT_clay_settings(CollectionButtonsPanel, Panel): col.template_override_property(collection_props, scene_props, "ssao_factor_edge") col.template_override_property(collection_props, scene_props, "ssao_distance") col.template_override_property(collection_props, scene_props, "ssao_attenuation") + col.template_override_property(collection_props, scene_props, "world_intensity") + + col.separator() + col.label("Hair Settings:") + col.template_override_property(collection_props, scene_props, "diffuse_intensity") + col.template_override_property(collection_props, scene_props, "specular_intensity") + col.template_override_property(collection_props, scene_props, "specular_hardness") + col.template_override_property(collection_props, scene_props, "color_randomicity") + col.template_override_property(collection_props, scene_props, "hair_diffuse_color") + col.template_override_property(collection_props, scene_props, "hair_specular_color") class COLLECTION_PT_object_mode_settings(CollectionButtonsPanel, Panel): -- cgit v1.2.3