@quick-threejs/reactive 0.1.20 → 0.1.21
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/main.d.mts +5 -3
- package/dist/main.d.ts +5 -3
- package/dist/main.js +3 -3
- package/dist/main.js.map +1 -1
- package/dist/main.mjs +3 -3
- package/dist/main.mjs.map +1 -1
- package/dist/{main.worker-DSzVtnTj.d.mts → main.worker-CJCIoHnh.d.mts} +3 -3
- package/dist/{main.worker-DSzVtnTj.d.ts → main.worker-CJCIoHnh.d.ts} +3 -3
- package/dist/main.worker.d.mts +4 -2
- package/dist/main.worker.d.ts +4 -2
- package/dist/main.worker.js +1 -1
- package/dist/main.worker.js.map +1 -1
- package/dist/main.worker.mjs +1 -1
- package/dist/main.worker.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4,16 +4,16 @@ import * as rxjs from 'rxjs';
|
|
|
4
4
|
import { Subject, Observable } from 'rxjs';
|
|
5
5
|
import * as three from 'three';
|
|
6
6
|
import { Texture, CubeTextureLoader, VideoTexture, LoadingManager, ImageBitmapLoader, AudioLoader, Clock, Scene, Camera, PerspectiveCamera, Quaternion, Vector3, Euler, CameraHelper, AxesHelper, GridHelper, WebGLRenderer, Vector2Like } from 'three';
|
|
7
|
+
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js';
|
|
7
8
|
import * as three_examples_jsm_controls_OrbitControls from 'three/examples/jsm/controls/OrbitControls';
|
|
8
|
-
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls';
|
|
9
9
|
import * as three_examples_jsm_libs_lil_gui_module_min from 'three/examples/jsm/libs/lil-gui.module.min';
|
|
10
10
|
import * as threads_dist_types_master from 'threads/dist/types/master';
|
|
11
11
|
import * as threads from 'threads';
|
|
12
12
|
import GUI from 'three/examples/jsm/libs/lil-gui.module.min.js';
|
|
13
13
|
import Stats from 'stats.js';
|
|
14
|
+
import { GLTF, GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader.js';
|
|
14
15
|
import * as three_examples_jsm_loaders_GLTFLoader from 'three/examples/jsm/loaders/GLTFLoader';
|
|
15
|
-
import {
|
|
16
|
-
import { DRACOLoader } from 'three/examples/jsm/loaders/DRACOLoader';
|
|
16
|
+
import { DRACOLoader } from 'three/examples/jsm/loaders/DRACOLoader.js';
|
|
17
17
|
|
|
18
18
|
interface OffscreenCanvasWithStyle extends OffscreenCanvas {
|
|
19
19
|
style: Partial<CSSStyleDeclaration> & {
|
|
@@ -4,16 +4,16 @@ import * as rxjs from 'rxjs';
|
|
|
4
4
|
import { Subject, Observable } from 'rxjs';
|
|
5
5
|
import * as three from 'three';
|
|
6
6
|
import { Texture, CubeTextureLoader, VideoTexture, LoadingManager, ImageBitmapLoader, AudioLoader, Clock, Scene, Camera, PerspectiveCamera, Quaternion, Vector3, Euler, CameraHelper, AxesHelper, GridHelper, WebGLRenderer, Vector2Like } from 'three';
|
|
7
|
+
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js';
|
|
7
8
|
import * as three_examples_jsm_controls_OrbitControls from 'three/examples/jsm/controls/OrbitControls';
|
|
8
|
-
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls';
|
|
9
9
|
import * as three_examples_jsm_libs_lil_gui_module_min from 'three/examples/jsm/libs/lil-gui.module.min';
|
|
10
10
|
import * as threads_dist_types_master from 'threads/dist/types/master';
|
|
11
11
|
import * as threads from 'threads';
|
|
12
12
|
import GUI from 'three/examples/jsm/libs/lil-gui.module.min.js';
|
|
13
13
|
import Stats from 'stats.js';
|
|
14
|
+
import { GLTF, GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader.js';
|
|
14
15
|
import * as three_examples_jsm_loaders_GLTFLoader from 'three/examples/jsm/loaders/GLTFLoader';
|
|
15
|
-
import {
|
|
16
|
-
import { DRACOLoader } from 'three/examples/jsm/loaders/DRACOLoader';
|
|
16
|
+
import { DRACOLoader } from 'three/examples/jsm/loaders/DRACOLoader.js';
|
|
17
17
|
|
|
18
18
|
interface OffscreenCanvasWithStyle extends OffscreenCanvas {
|
|
19
19
|
style: Partial<CSSStyleDeclaration> & {
|
package/dist/main.worker.d.mts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
export { E as ExposedAppModule, u as launchApp } from './main.worker-
|
|
1
|
+
export { E as ExposedAppModule, u as launchApp } from './main.worker-CJCIoHnh.mjs';
|
|
2
2
|
import '@quick-threejs/utils';
|
|
3
3
|
import 'rxjs';
|
|
4
4
|
import 'three';
|
|
5
|
+
import 'three/examples/jsm/controls/OrbitControls.js';
|
|
5
6
|
import 'three/examples/jsm/controls/OrbitControls';
|
|
6
7
|
import 'three/examples/jsm/libs/lil-gui.module.min';
|
|
7
8
|
import 'threads/dist/types/master';
|
|
8
9
|
import 'threads';
|
|
9
10
|
import 'three/examples/jsm/libs/lil-gui.module.min.js';
|
|
10
11
|
import 'stats.js';
|
|
12
|
+
import 'three/examples/jsm/loaders/GLTFLoader.js';
|
|
11
13
|
import 'three/examples/jsm/loaders/GLTFLoader';
|
|
12
|
-
import 'three/examples/jsm/loaders/DRACOLoader';
|
|
14
|
+
import 'three/examples/jsm/loaders/DRACOLoader.js';
|
package/dist/main.worker.d.ts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
export { E as ExposedAppModule, u as launchApp } from './main.worker-
|
|
1
|
+
export { E as ExposedAppModule, u as launchApp } from './main.worker-CJCIoHnh.js';
|
|
2
2
|
import '@quick-threejs/utils';
|
|
3
3
|
import 'rxjs';
|
|
4
4
|
import 'three';
|
|
5
|
+
import 'three/examples/jsm/controls/OrbitControls.js';
|
|
5
6
|
import 'three/examples/jsm/controls/OrbitControls';
|
|
6
7
|
import 'three/examples/jsm/libs/lil-gui.module.min';
|
|
7
8
|
import 'threads/dist/types/master';
|
|
8
9
|
import 'threads';
|
|
9
10
|
import 'three/examples/jsm/libs/lil-gui.module.min.js';
|
|
10
11
|
import 'stats.js';
|
|
12
|
+
import 'three/examples/jsm/loaders/GLTFLoader.js';
|
|
11
13
|
import 'three/examples/jsm/loaders/GLTFLoader';
|
|
12
|
-
import 'three/examples/jsm/loaders/DRACOLoader';
|
|
14
|
+
import 'three/examples/jsm/loaders/DRACOLoader.js';
|
package/dist/main.worker.js
CHANGED
|
@@ -2390,7 +2390,7 @@ CameraComponent = _ts_decorate6([
|
|
|
2390
2390
|
|
|
2391
2391
|
// src/core/app/debug/debug.component.ts
|
|
2392
2392
|
var import_three4 = require("three");
|
|
2393
|
-
var import_OrbitControls = require("three/examples/jsm/controls/OrbitControls");
|
|
2393
|
+
var import_OrbitControls = require("three/examples/jsm/controls/OrbitControls.js");
|
|
2394
2394
|
function _ts_decorate7(decorators, target, key, desc) {
|
|
2395
2395
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
2396
2396
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|