From 2f9f3dd5903eeec514640de05a45cfd21d168397 Mon Sep 17 00:00:00 2001 From: Miika Hamalainen Date: Fri, 10 May 2013 16:18:00 +0000 Subject: Smoke: Add new "Full Sample" option to high resolution smoke panel. This is hopefully the ultimate solution against smoke blockiness near emitter. Previously high resolution flow/emitter voxels were generated based on the low resolution ones. So if you had 32 resolution and 4 division high resolution, it still used smoke flow generated from those 32 resolution voxels. Now I introduced a new sampling method called "Full Sample" that generates full resolution flow for for high resolution domain as well. Read more about it in my blog post: https://www.miikahweb.com/en/blog/2013/05/10/getting-rid-of-smoke-blockiness Also changed "quick smoke" operator default voxel data interpolation mode to "Cubic B-Spline" to smoothen out it even more. --- release/scripts/startup/bl_ui/properties_physics_smoke.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'release/scripts/startup/bl_ui/properties_physics_smoke.py') diff --git a/release/scripts/startup/bl_ui/properties_physics_smoke.py b/release/scripts/startup/bl_ui/properties_physics_smoke.py index 4a1b99ee810..842497fc74d 100644 --- a/release/scripts/startup/bl_ui/properties_physics_smoke.py +++ b/release/scripts/startup/bl_ui/properties_physics_smoke.py @@ -244,7 +244,8 @@ class PHYSICS_PT_smoke_highres(PhysicButtonsPanel, Panel): col = split.column() col.label(text="Resolution:") col.prop(md, "amplify", text="Divisions") - col.prop(md, "use_smooth_emitter") + col.label(text="Flow Sampling:") + col.row().prop(md, "highres_sampling", text="") col = split.column() col.label(text="Noise Method:") -- cgit v1.2.3