瀏覽代碼

increase marker sphere radius

Wyatt Gillette 4 月之前
父節點
當前提交
b3fb4588f6
共有 1 個文件被更改,包括 1 次插入1 次删除
  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);