* Number of elements in the accessor. An array of length 30, containing 10 `VEC3` elements, * will have a count of 10.
()
| 305 | * will have a count of 10. |
| 306 | */ |
| 307 | public getCount(): number { |
| 308 | const array = this.get('array'); |
| 309 | return array ? array.length / this.getElementSize() : 0; |
| 310 | } |
| 311 | |
| 312 | /** Type of element stored in the accessor. `VEC2`, `VEC3`, etc. */ |
| 313 | public getType(): GLTF.AccessorType { |