Pointcache / Smoke:

* Disable "step" setting for smoke on GUI
This commit is contained in:
Daniel Genrich 2009-09-13 13:38:23 +00:00
parent 06a2ee4afe
commit 716953f0c1

@ -57,7 +57,8 @@ def point_cache_ui(self, cache, enabled, particles, smoke):
row = layout.row()
row.enabled = enabled
row.itemO("ptcache.bake_from_cache", text="Current Cache to Bake")
row.itemR(cache, "step");
if not smoke:
row.itemR(cache, "step");
if not smoke:
row = layout.row()