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
diff options
context:
space:
mode:
authorAntonioya <blendergit@gmail.com>2018-10-01 17:30:43 +0300
committerAntonioya <blendergit@gmail.com>2018-10-01 17:31:04 +0300
commita3afcae39ed03e0d62087992dac0b64f1a2a3138 (patch)
treeefba11cfc72a4da3d181e02071a36fc2236b5ba0 /release/scripts/startup/bl_ui/properties_data_shaderfx.py
parentc234c3db1bcb6db868db26b2732775a51972b080 (diff)
GP: Add Blur to Shadow FX
The shadow needed a blur to make soft transitions and get a better effect.
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_data_shaderfx.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_shaderfx.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_shaderfx.py b/release/scripts/startup/bl_ui/properties_data_shaderfx.py
index f1372f4b2c3..fdb962aab68 100644
--- a/release/scripts/startup/bl_ui/properties_data_shaderfx.py
+++ b/release/scripts/startup/bl_ui/properties_data_shaderfx.py
@@ -107,6 +107,10 @@ class DATA_PT_shader_fx(ShaderFxButtonsPanel, Panel):
layout.prop(fx, "rotation")
layout.separator()
+ layout.prop(fx, "blur")
+ layout.prop(fx, "samples")
+
+ layout.separator()
layout.prop(fx, "use_object", text="Use object as pivot")
if fx.use_object:
row = layout.row()