Procházet zdrojové kódy

Update SSGINode.js

Fix JSDoc.
Michael Herzog před 4 měsíci
rodič
revize
e0b01bc3df
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      examples/jsm/tsl/display/SSGINode.js

+ 2 - 2
examples/jsm/tsl/display/SSGINode.js

@@ -96,7 +96,7 @@ class SSGINode extends TempNode {
 		 * Number of per-pixel hemisphere slices. This has a big performance cost and should be kept as low as possible.
 		 * Should be in the range `[1, 4]`.
 		 *
-		 * @type {UniformNode<int>}
+		 * @type {UniformNode<uint>}
 		 * @default 1
 		 */
 		this.sliceCount = uniform( 1, 'uint' );
@@ -105,7 +105,7 @@ class SSGINode extends TempNode {
 		 * Number of samples taken along one side of a given hemisphere slice. This has a big performance cost and should
 		 * be kept as low as possible.  Should be in the range `[1, 32]`.
 		 *
-		 * @type {UniformNode<int>}
+		 * @type {UniformNode<uint>}
 		 * @default 12
 		 */
 		this.stepCount = uniform( 12, 'uint' );

粤ICP备19079148号