|
@@ -90,11 +90,11 @@ public class EmitterShapePropertyEditor implements PropertyEditor {
|
|
|
+ ", "
|
|
|
+ shape.getMin().z
|
|
|
+ ", "
|
|
|
- + shape.getMin().x + shape.getLen().x
|
|
|
+ + (shape.getMin().x + shape.getLen().x)
|
|
|
+ ", "
|
|
|
- + shape.getMin().x + shape.getLen().y
|
|
|
+ + (shape.getMin().x + shape.getLen().y)
|
|
|
+ ", "
|
|
|
- + shape.getMin().x + shape.getLen().z
|
|
|
+ + (shape.getMin().x + shape.getLen().z)
|
|
|
+ "]";
|
|
|
} else if (emitter instanceof EmitterPointShape) {
|
|
|
EmitterPointShape shape = (EmitterPointShape) emitter;
|