diff --git a/types/three/src/core/BufferAttribute.d.ts b/types/three/src/core/BufferAttribute.d.ts index c0dbba8e0..01e8e882d 100644 --- a/types/three/src/core/BufferAttribute.d.ts +++ b/types/three/src/core/BufferAttribute.d.ts @@ -95,21 +95,6 @@ export class BufferAttribute { */ gpuType: AttributeGPUType; - /** - * This can be used to only update some components of stored vectors (for example, just the component related to color). - * @defaultValue `{ offset: number = 0; count: number = -1 }` - * @deprecated Will be removed in r169. Use "addUpdateRange()" instead. - */ - updateRange: { - /** - * Position at which to start update. - * @defaultValue `0` - */ - offset: number; - /** @defaultValue `-1`, which means don't use update ranges. */ - count: number; - }; - /** * This can be used to only update some components of stored vectors (for example, just the component related to * color). Use the {@link .addUpdateRange} function to add ranges to this array. diff --git a/types/three/src/core/InterleavedBuffer.d.ts b/types/three/src/core/InterleavedBuffer.d.ts index 7b01ef5bf..89819f6c2 100644 --- a/types/three/src/core/InterleavedBuffer.d.ts +++ b/types/three/src/core/InterleavedBuffer.d.ts @@ -42,18 +42,6 @@ export class InterleavedBuffer { */ usage: Usage; - /** - * Object containing offset and count. - * @defaultValue `{ offset: number = 0; count: number = -1 }` - * @deprecated Will be removed in r169. Use "addUpdateRange()" instead. - */ - updateRange: { - /** @defaultValue `0` */ - offset: number; - /** @defaultValue `-1` */ - count: number; - }; - /** * This can be used to only update some components of stored data. Use the {@link .addUpdateRange} function to add * ranges to this array.