@series-inc/rundot-3d-engine 0.6.2 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts
CHANGED
|
@@ -315,7 +315,10 @@ declare abstract class VenusGame {
|
|
|
315
315
|
protected canvas: HTMLCanvasElement;
|
|
316
316
|
protected renderer: THREE.WebGLRenderer;
|
|
317
317
|
protected scene: THREE.Scene;
|
|
318
|
-
|
|
318
|
+
private _instanceCamera;
|
|
319
|
+
/** Setting the camera also updates VenusGame.camera (static) */
|
|
320
|
+
protected get camera(): THREE.PerspectiveCamera | THREE.OrthographicCamera;
|
|
321
|
+
protected set camera(cam: THREE.PerspectiveCamera | THREE.OrthographicCamera);
|
|
319
322
|
private resizeListener;
|
|
320
323
|
private isDisposed;
|
|
321
324
|
private animationId;
|
package/dist/index.js
CHANGED
package/dist/systems/index.js
CHANGED