Skip to content

Commit

Permalink
CubeCamera: Add .activeMipmapLevel (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
Methuselah96 authored Sep 19, 2023
1 parent a2a8c2d commit 1b55685
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 6 additions & 4 deletions types/three/src/cameras/CubeCamera.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { WebGLCubeRenderTarget } from './../renderers/WebGLCubeRenderTarget.js';
import { Scene } from './../scenes/Scene.js';
import { WebGLRenderer } from './../renderers/WebGLRenderer.js';
import { Object3D } from './../core/Object3D.js';
import { WebGLCubeRenderTarget } from '../renderers/WebGLCubeRenderTarget.js';
import { Scene } from '../scenes/Scene.js';
import { WebGLRenderer } from '../renderers/WebGLRenderer.js';
import { Object3D } from '../core/Object3D.js';
import { CoordinateSystem } from '../constants.js';

/**
Expand Down Expand Up @@ -56,6 +56,8 @@ export class CubeCamera extends Object3D {

coordinateSystem: CoordinateSystem;

activeMipmapLevel: number;

updateCoordinateSystem(): void;

/**
Expand Down
6 changes: 2 additions & 4 deletions types/three/src/objects/Sprite.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { Vector2 } from './../math/Vector2.js';
import { Raycaster } from './../core/Raycaster.js';
import { Object3D } from './../core/Object3D.js';
import { Intersection } from '../core/Raycaster.js';
import { Vector2 } from '../math/Vector2.js';
import { Object3D } from '../core/Object3D.js';
import { SpriteMaterial } from '../materials/Materials.js';
import { BufferGeometry } from '../core/BufferGeometry.js';

Expand Down

0 comments on commit 1b55685

Please sign in to comment.