소스 검색

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);