BufferAttribute Types 有多少分别是什么
- Float32BufferAttribute 32 位浮点数 Float32Array
- Float16BufferAttribute 16 位浮点数 Float16Array
- Uint32BufferAttribute 32 位无符号整数数据 Uint32Array
- Int32BufferAttribute 32 位有符号整数 Int32Array
- Uint16BufferAttribute 16 位无符号整数数据 Uint16Array
- Int16BufferAttribute 16 位有符号整数 Int16Array
- Uint8ClampedBufferAttribute 8 位无符号整数 Uint8ClampedArray (处理业确整数值)
- Uint8BufferAttribute 8 位无符号整数 Uint8Array (处理图像颜色)
- Int8BufferAttribute 8 位有符号整数 Int8Array