Andrew Butt 7 년 전
부모
커밋
8b3df84326
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 5 2
      src/Particles/EmitterTypes/babylon.sphereParticleEmitter.ts

+ 5 - 2
src/Particles/EmitterTypes/babylon.sphereParticleEmitter.ts

@@ -7,14 +7,17 @@ module BABYLON {
          /**
          * Creates a new instance SphereParticleEmitter
          * @param radius the radius of the emission sphere (1 by default)
-         * @param radiusRange the ramge of the emission sphere [0-1] 0 Surface only, 1 Entire Radius (1 by default) 
+         * @param radiusRange the range of the emission sphere [0-1] 0 Surface only, 1 Entire Radius (1 by default) 
          * @param directionRandomizer defines how much to randomize the particle direction [0-1]
          */
         constructor(
             /**
              * The radius of the emission sphere.
              */
-            public radius = 1, 
+            public radius = 1,
+            /**
+             * The range of emission [0-1] 0 Surface only, 1 Entire Radius.
+             */
             public radiusRange = 1,
             /**
              * How much to randomize the particle direction [0-1].