Quellcode durchsuchen

Removed the modification of the input parameter that lead to a wrong axisSamples member then the cylinder was closed

Teencrusher vor 9 Jahren
Ursprung
Commit
5468a48050
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      jme3-core/src/main/java/com/jme3/scene/shape/Cylinder.java

+ 1 - 1
jme3-core/src/main/java/com/jme3/scene/shape/Cylinder.java

@@ -211,7 +211,7 @@ public class Cylinder extends Mesh {
      */
     public void updateGeometry(int axisSamples, int radialSamples,
             float radius, float radius2, float height, boolean closed, boolean inverted) {
-        this.axisSamples = axisSamples + (closed ? 2 : 0);
+        this.axisSamples = axisSamples;
         this.radialSamples = radialSamples;
         this.radius = radius;
         this.radius2 = radius2;