Turn smoke off by default.

If shader is screwed up on someone's system they won't get the error
until they turn it on, rather than the photo just failing right away.
This commit is contained in:
bkuker 2014-01-31 17:43:36 -05:00
parent 9f13119317
commit b7b0ca002f

@ -29,7 +29,7 @@ public class PhotoSettings extends AbstractChangeSource implements FlameSettings
private boolean motionBlurred = false; private boolean motionBlurred = false;
private boolean flame = false; private boolean flame = false;
private Color flameColor = new Color(255, 100, 50); private Color flameColor = new Color(255, 100, 50);
private boolean smoke = true; private boolean smoke = false;
private Color smokeColor = new Color(230, 230, 230, 102); private Color smokeColor = new Color(230, 230, 230, 102);
private boolean sparks = false; private boolean sparks = false;
private double exhaustScale = 1.0; private double exhaustScale = 1.0;