瀏覽代碼

Update BufferAttribute.html (#23249)

Fixed min value of `Int16Array`
Jose Luis Garcia del Castillo 3 年之前
父節點
當前提交
3a900407bf
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/api/en/core/BufferAttribute.html

+ 1 - 1
docs/api/en/core/BufferAttribute.html

@@ -38,7 +38,7 @@
 		in the buffer maps to the values in the GLSL code. For instance, if [page:TypedArray array] is an instance
 		of UInt16Array, and [page:Boolean normalized] is true, the values 0 - +65535 in the array
 		 data will be mapped to 0.0f - +1.0f in the GLSL attribute. An Int16Array (signed) would map
-		 from -32767 - +32767  to -1.0f - +1.0f. If [page:Boolean normalized] is false, the values
+		 from -32768 - +32767  to -1.0f - +1.0f. If [page:Boolean normalized] is false, the values
 		 will be converted to floats unmodified, i.e. 32767 becomes 32767.0f.
 		</p>