@@ -25,12 +25,6 @@ InterleavedBuffer.prototype = {
isInterleavedBuffer: true,
- get length () {
-
- return this.array.length;
- },
set needsUpdate( value ) {
if ( value === true ) this.version ++;
@@ -23,13 +23,6 @@ InterleavedBufferAttribute.prototype = {
isInterleavedBufferAttribute: true,
- get length() {
- console.warn( 'THREE.BufferAttribute: .length has been deprecated. Please use .count.' );
get count() {
return this.data.count;