From 479a5ae7a48ed7fcd4b226484fef457f70fd08d3 Mon Sep 17 00:00:00 2001 From: "rem..om" Date: Thu, 18 Oct 2012 21:05:09 +0000 Subject: [PATCH] SDK : fixed another issue in EmitterBoxShapeEditor git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9871 75d07b2b-3a1a-0410-a2c5-0572b91ccdca --- .../jme3/gde/core/properties/EmitterShapePropertyEditor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/jme3-core/src/com/jme3/gde/core/properties/EmitterShapePropertyEditor.java b/sdk/jme3-core/src/com/jme3/gde/core/properties/EmitterShapePropertyEditor.java index 509d74583..a2ab59a72 100644 --- a/sdk/jme3-core/src/com/jme3/gde/core/properties/EmitterShapePropertyEditor.java +++ b/sdk/jme3-core/src/com/jme3/gde/core/properties/EmitterShapePropertyEditor.java @@ -92,9 +92,9 @@ public class EmitterShapePropertyEditor implements PropertyEditor { + ", " + (shape.getMin().x + shape.getLen().x) + ", " - + (shape.getMin().x + shape.getLen().y) + + (shape.getMin().y + shape.getLen().y) + ", " - + (shape.getMin().x + shape.getLen().z) + + (shape.getMin().z + shape.getLen().z) + "]"; } else if (emitter instanceof EmitterPointShape) { EmitterPointShape shape = (EmitterPointShape) emitter;