// TODO 025. the sun sliders should be able to be decorrelated from auto move
public SunState createSunState() {
BigDecimal brightness = PercentHelper.getDecimalValue(100);
BigDecimal riseAngle = PercentHelper.getDecimalValue(25);
BigDecimal zenithAngle = PercentHelper.getDecimalValue(50);
Sun3DStateFactory sun3DStateFactory = new Sun3DStateFactory();
Sun3DState sun3DState = sun3DStateFactory.createSpecificSun3DState();
return new SunState(brightness, riseAngle, zenithAngle, sun3DState);
}