Skip to content

Commit 72ac6e0

Browse files
authored
Merge pull request #17205 from samalexander/patch-1
Add missing property to BufferGeometry.d.ts
2 parents 1392204 + cfda6f8 commit 72ac6e0

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/core/BufferGeometry.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ export class BufferGeometry extends EventDispatcher {
4343
boundingSphere: Sphere;
4444
drawRange: { start: number; count: number };
4545
userData: {[key: string]: any};
46+
isBufferGeometry: boolean;
4647

4748
getIndex(): BufferAttribute;
4849
setIndex( index: BufferAttribute | number[] ): void;

src/core/Geometry.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ export class Geometry extends EventDispatcher {
5050

5151
uuid: string;
5252

53+
isGeometry: boolean;
54+
5355
/**
5456
* Name for this geometry. Default is an empty string.
5557
*/

0 commit comments

Comments
 (0)