Explorar el Código

increase marker sphere radius

Wyatt Gillette hace 4 meses
padre
commit
b3fb4588f6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      jme3-examples/src/main/java/jme3test/audio/TestReverb.java

+ 1 - 1
jme3-examples/src/main/java/jme3test/audio/TestReverb.java

@@ -92,7 +92,7 @@ public class TestReverb extends SimpleApplication implements ActionListener {
         audioSource.setVolume(1f);
         rootNode.attachChild(audioSource);
 
-        Geometry marker = makeShape("Marker", new Sphere(16, 16, .5f), ColorRGBA.Red);
+        Geometry marker = makeShape("Marker", new Sphere(16, 16, 1f), ColorRGBA.Red);
         audioSource.attachChild(marker);
 
         Geometry grid = makeShape("DebugGrid", new Grid(21, 21, 4), ColorRGBA.Blue);