@series-inc/rundot-3d-engine 0.6.2 → 0.6.4
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/{chunk-IGT2NHJ3.js → chunk-3YI5JLCR.js} +10 -2
- package/dist/chunk-3YI5JLCR.js.map +1 -0
- package/dist/index.d.ts +4 -1
- package/dist/index.js +1 -1
- package/dist/systems/index.d.ts +2 -0
- package/dist/systems/index.js +22 -7
- package/dist/systems/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-IGT2NHJ3.js.map +0 -1
|
@@ -2576,7 +2576,15 @@ var VenusGame = class _VenusGame {
|
|
|
2576
2576
|
canvas;
|
|
2577
2577
|
renderer;
|
|
2578
2578
|
scene;
|
|
2579
|
-
|
|
2579
|
+
_instanceCamera;
|
|
2580
|
+
/** Setting the camera also updates VenusGame.camera (static) */
|
|
2581
|
+
get camera() {
|
|
2582
|
+
return this._instanceCamera;
|
|
2583
|
+
}
|
|
2584
|
+
set camera(cam) {
|
|
2585
|
+
this._instanceCamera = cam;
|
|
2586
|
+
_VenusGame._camera = cam;
|
|
2587
|
+
}
|
|
2580
2588
|
resizeListener;
|
|
2581
2589
|
isDisposed = false;
|
|
2582
2590
|
animationId = null;
|
|
@@ -6145,4 +6153,4 @@ export {
|
|
|
6145
6153
|
PrefabLoader,
|
|
6146
6154
|
StowKitSystem
|
|
6147
6155
|
};
|
|
6148
|
-
//# sourceMappingURL=chunk-
|
|
6156
|
+
//# sourceMappingURL=chunk-3YI5JLCR.js.map
|