@crystaldesign/real-time-viewer 25.12.0-rc.2 → 25.12.0
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/build/esm/index.js +56 -45
- package/build/types/real-time-viewer/src/controls/index.d.ts.map +1 -1
- package/build/types/real-time-viewer/src/parser/createCams/index.d.ts.map +1 -1
- package/build/types/real-time-viewer/src/store/UIStore.d.ts.map +1 -1
- package/build/types/real-time-viewer/src/useRealTimeRenderData.d.ts.map +1 -1
- package/build/umd/real-time-viewer.umd.min.js +1 -1
- package/build/umd/report.html +1 -1
- package/package.json +2 -2
package/build/esm/index.js
CHANGED
|
@@ -89,26 +89,26 @@ function GetCameraControls(camera) {
|
|
|
89
89
|
stopRender = false;
|
|
90
90
|
}
|
|
91
91
|
var cam = {
|
|
92
|
-
horiFov: camera.fov * 180 / Math.PI,
|
|
92
|
+
horiFov: Math.round(camera.fov * 180 / Math.PI * 1000) / 1000,
|
|
93
93
|
lensShiftX: 0,
|
|
94
94
|
lensShiftY: 0,
|
|
95
95
|
name: camera.name,
|
|
96
96
|
pos: {
|
|
97
|
-
x: -camera.position.x,
|
|
98
|
-
y: camera.position.y,
|
|
99
|
-
z: camera.position.z
|
|
97
|
+
x: Math.round(-camera.position.x * 1000) / 1000,
|
|
98
|
+
y: Math.round(camera.position.y * 1000) / 1000,
|
|
99
|
+
z: Math.round(camera.position.z * 1000) / 1000
|
|
100
100
|
},
|
|
101
101
|
rot: {
|
|
102
|
-
x: -camera.rotation.x * 180 / Math.PI,
|
|
103
|
-
y: 180 - camera.rotation.y * 180 / Math.PI,
|
|
104
|
-
z: camera.rotation.z * 180 / Math.PI
|
|
102
|
+
x: Math.round(-camera.rotation.x * 180 / Math.PI * 1000) / 1000,
|
|
103
|
+
y: Math.round((180 - camera.rotation.y * 180 / Math.PI) * 1000) / 1000,
|
|
104
|
+
z: Math.round(camera.rotation.z * 180 / Math.PI * 1000) / 1000
|
|
105
105
|
},
|
|
106
106
|
targetPos: {
|
|
107
|
-
x: -camera.target.x,
|
|
108
|
-
y: camera.target.y,
|
|
109
|
-
z: camera.target.z
|
|
107
|
+
x: Math.round(-camera.target.x * 1000) / 1000,
|
|
108
|
+
y: Math.round(camera.target.y * 1000) / 1000,
|
|
109
|
+
z: Math.round(camera.target.z * 1000) / 1000
|
|
110
110
|
},
|
|
111
|
-
vertFov: camera.fov * 180 / Math.PI
|
|
111
|
+
vertFov: Math.round(camera.fov * 180 / Math.PI * 1000) / 1000
|
|
112
112
|
};
|
|
113
113
|
uistore.requestNewOverlayImage(cam, sceneStore.focusedElement, sceneStore.targetCameraPosition, sceneStore.updateCameraInformation);
|
|
114
114
|
if (stopRender) {
|
|
@@ -1983,15 +1983,19 @@ var UIStore = /*#__PURE__*/function () {
|
|
|
1983
1983
|
var utilStore = useUtilStoreContext();
|
|
1984
1984
|
if (!utilStore || !utilStore.updateCam) return;
|
|
1985
1985
|
_this._isStaticBg = overlayImage.isStaticBg;
|
|
1986
|
+
_this._plane.parent = _this._scene.activeCamera;
|
|
1987
|
+
_this._plane.setEnabled(true);
|
|
1986
1988
|
if (_this._isStaticBg) {
|
|
1987
1989
|
// no highlightlayer on static room bg
|
|
1988
1990
|
_this.deactivateHighlightLayer();
|
|
1989
|
-
_this._plane.setEnabled(true);
|
|
1990
1991
|
} // never switch to rtv when in room
|
|
1991
|
-
|
|
1992
|
-
_this.resize()
|
|
1993
|
-
|
|
1994
|
-
|
|
1992
|
+
|
|
1993
|
+
_this.resize(function () {
|
|
1994
|
+
return setTimeout(function () {
|
|
1995
|
+
return _this._diffuseTexture.updateURL(overlayImage.base64, undefined, function () {
|
|
1996
|
+
return _this.fadeInOverlayImage(_this._plane.visibility == 1 || !!_this._isStaticBg);
|
|
1997
|
+
});
|
|
1998
|
+
}, 100);
|
|
1995
1999
|
});
|
|
1996
2000
|
});
|
|
1997
2001
|
this._scene = scene;
|
|
@@ -2060,6 +2064,7 @@ var UIStore = /*#__PURE__*/function () {
|
|
|
2060
2064
|
this._isStaticBg = _overlayImage === null || _overlayImage === void 0 ? void 0 : _overlayImage.isStaticBg;
|
|
2061
2065
|
if (_overlayImage) {
|
|
2062
2066
|
this._plane.visibility = 1;
|
|
2067
|
+
this._plane.setEnabled(true);
|
|
2063
2068
|
this._isUnityComb = true;
|
|
2064
2069
|
this._enableSSAO(false);
|
|
2065
2070
|
if (_overlayImage.isStaticBg) this.fadeInOverlayImage(true);
|
|
@@ -2209,7 +2214,7 @@ var UIStore = /*#__PURE__*/function () {
|
|
|
2209
2214
|
key: "resize",
|
|
2210
2215
|
value: function resize(callback) {
|
|
2211
2216
|
var _this$_runRenderLoopF;
|
|
2212
|
-
if (!this._scene || !this._scene.getEngine() || !this._scene.
|
|
2217
|
+
if (!this._scene || !this._scene.getEngine() || !this._scene.activeCamera) return;
|
|
2213
2218
|
(_this$_runRenderLoopF = this._runRenderLoopForTime) === null || _this$_runRenderLoopF === void 0 || _this$_runRenderLoopF.call(this, 10000);
|
|
2214
2219
|
this._scene.getEngine().resize(true);
|
|
2215
2220
|
// if rendering is cached it gets updated before resize is triggered, so check if the image is already correct
|
|
@@ -3987,26 +3992,26 @@ function updateCam(camera, scene) {
|
|
|
3987
3992
|
sceneStore.targetCameraPosition = position;
|
|
3988
3993
|
sceneStore.cameraTargetPosition = target;
|
|
3989
3994
|
var camInfo = {
|
|
3990
|
-
horiFov: cam.fov * 180 / Math.PI,
|
|
3995
|
+
horiFov: Math.round(cam.fov * 180 / Math.PI * 1000) / 1000,
|
|
3991
3996
|
lensShiftX: 0,
|
|
3992
3997
|
lensShiftY: 0,
|
|
3993
3998
|
name: cam.name,
|
|
3994
3999
|
pos: {
|
|
3995
|
-
x: -cam.position.x,
|
|
3996
|
-
y: cam.position.y,
|
|
3997
|
-
z: cam.position.z
|
|
4000
|
+
x: Math.round(-cam.position.x * 1000) / 1000,
|
|
4001
|
+
y: Math.round(cam.position.y * 1000) / 1000,
|
|
4002
|
+
z: Math.round(cam.position.z * 1000) / 1000
|
|
3998
4003
|
},
|
|
3999
4004
|
rot: {
|
|
4000
|
-
x: -cam.rotation.x * 180 / Math.PI,
|
|
4001
|
-
y: 180 - cam.rotation.y * 180 / Math.PI,
|
|
4002
|
-
z: cam.rotation.z * 180 / Math.PI
|
|
4005
|
+
x: Math.round(-cam.rotation.x * 180 / Math.PI * 1000) / 1000,
|
|
4006
|
+
y: Math.round((180 - cam.rotation.y * 180 / Math.PI) * 1000) / 1000,
|
|
4007
|
+
z: Math.round(cam.rotation.z * 180 / Math.PI * 1000) / 1000
|
|
4003
4008
|
},
|
|
4004
4009
|
targetPos: {
|
|
4005
|
-
x: -cam.target.x,
|
|
4006
|
-
y: cam.target.y,
|
|
4007
|
-
z: cam.target.z
|
|
4010
|
+
x: Math.round(-cam.target.x * 1000) / 1000,
|
|
4011
|
+
y: Math.round(cam.target.y * 1000) / 1000,
|
|
4012
|
+
z: Math.round(cam.target.z * 1000) / 1000
|
|
4008
4013
|
},
|
|
4009
|
-
vertFov: cam.fov * 180 / Math.PI
|
|
4014
|
+
vertFov: Math.round(cam.fov * 180 / Math.PI * 1000) / 1000
|
|
4010
4015
|
};
|
|
4011
4016
|
(_sceneStore$updateCam = sceneStore.updateCameraInformation) === null || _sceneStore$updateCam === void 0 || _sceneStore$updateCam.call(sceneStore, camInfo);
|
|
4012
4017
|
}
|
|
@@ -4035,8 +4040,7 @@ function useRealTimeRenderData (_ref) {
|
|
|
4035
4040
|
var _useContext = useContext(),
|
|
4036
4041
|
sceneStore = _useContext.sceneStore,
|
|
4037
4042
|
uiStore = _useContext.uiStore,
|
|
4038
|
-
gridStore = _useContext.gridStore
|
|
4039
|
-
utilStore = _useContext.utilStore;
|
|
4043
|
+
gridStore = _useContext.gridStore;
|
|
4040
4044
|
DracoCompression.Configuration = {
|
|
4041
4045
|
decoder: {
|
|
4042
4046
|
wasmUrl: apiConfig.diva3darchive + '/draco/draco_decoder_gltf.js',
|
|
@@ -4186,13 +4190,7 @@ function useRealTimeRenderData (_ref) {
|
|
|
4186
4190
|
}
|
|
4187
4191
|
return _context.abrupt("return");
|
|
4188
4192
|
case 2:
|
|
4189
|
-
|
|
4190
|
-
_context.next = 4;
|
|
4191
|
-
break;
|
|
4192
|
-
}
|
|
4193
|
-
return _context.abrupt("return");
|
|
4194
|
-
case 4:
|
|
4195
|
-
_context.next = 6;
|
|
4193
|
+
_context.next = 4;
|
|
4196
4194
|
return EngineFactory.CreateAsync(gameCanvas.current, {
|
|
4197
4195
|
antialias: true,
|
|
4198
4196
|
stencil: true,
|
|
@@ -4209,16 +4207,16 @@ function useRealTimeRenderData (_ref) {
|
|
|
4209
4207
|
wasmPath: apiConfig.diva3darchive + '/twgsl/twgsl.wasm'
|
|
4210
4208
|
}
|
|
4211
4209
|
});
|
|
4212
|
-
case
|
|
4210
|
+
case 4:
|
|
4213
4211
|
babylonEngine = _context.sent;
|
|
4214
4212
|
engine = babylonEngine;
|
|
4215
4213
|
if (!disposed) {
|
|
4216
|
-
_context.next =
|
|
4214
|
+
_context.next = 9;
|
|
4217
4215
|
break;
|
|
4218
4216
|
}
|
|
4219
4217
|
engine.dispose();
|
|
4220
4218
|
return _context.abrupt("return");
|
|
4221
|
-
case
|
|
4219
|
+
case 9:
|
|
4222
4220
|
babylonEngine.renderEvenInBackground = renderInBackground;
|
|
4223
4221
|
babylonEngine.disablePerformanceMonitorInBackground = true;
|
|
4224
4222
|
babylonScene = new Scene(babylonEngine, undefined);
|
|
@@ -4227,7 +4225,7 @@ function useRealTimeRenderData (_ref) {
|
|
|
4227
4225
|
context = registerContext(babylonScene, renderjob, apiConfig, jwt, viewHandler, callbacks.onMissingGeo, callbacks.requestNewOverlayImage, overlayImage, uiConfig, callbacks.updateCameraInformation, !!isMobile);
|
|
4228
4226
|
createCams(babylonScene, viewpoint);
|
|
4229
4227
|
sceneStore = context.sceneStore;
|
|
4230
|
-
|
|
4228
|
+
context.utilStore;
|
|
4231
4229
|
gridStore = context.gridStore;
|
|
4232
4230
|
uiStore = context.uiStore;
|
|
4233
4231
|
babylonScene.executeWhenReady(function () {
|
|
@@ -4238,7 +4236,7 @@ function useRealTimeRenderData (_ref) {
|
|
|
4238
4236
|
_observer = new ResizeObserver(resize);
|
|
4239
4237
|
_observer.observe(gameCanvas.current);
|
|
4240
4238
|
}
|
|
4241
|
-
case
|
|
4239
|
+
case 22:
|
|
4242
4240
|
case "end":
|
|
4243
4241
|
return _context.stop();
|
|
4244
4242
|
}
|
|
@@ -4271,13 +4269,26 @@ function useRealTimeRenderData (_ref) {
|
|
|
4271
4269
|
};
|
|
4272
4270
|
}, []);
|
|
4273
4271
|
useEffect(function () {
|
|
4274
|
-
|
|
4272
|
+
function debounceUpdateWithUnityData() {
|
|
4273
|
+
var _useContext2 = useContext(),
|
|
4274
|
+
sceneStore = _useContext2.sceneStore,
|
|
4275
|
+
uiStore = _useContext2.uiStore,
|
|
4276
|
+
utilStore = _useContext2.utilStore;
|
|
4277
|
+
if (!overlayImage || !uiStore || !gameCanvas.current || !sceneStore || !sceneStore.scene.getEngine()) {
|
|
4278
|
+
setTimeout(function () {
|
|
4279
|
+
return debounceUpdateWithUnityData();
|
|
4280
|
+
}, 300);
|
|
4281
|
+
return;
|
|
4282
|
+
}
|
|
4275
4283
|
if (!utilStore.updateCam) return;
|
|
4276
4284
|
sceneStore.runRenderLoopForTime(5000);
|
|
4277
4285
|
shadow(); // make sure the lighting is set up otherwise the image has a wrong color
|
|
4278
|
-
|
|
4279
|
-
|
|
4286
|
+
sceneStore.scene.executeWhenReady(function () {
|
|
4287
|
+
uiStore.updateOverlayImage(overlayImage);
|
|
4288
|
+
if (viewpoint) updateCam(viewpoint, sceneStore.scene);
|
|
4289
|
+
});
|
|
4280
4290
|
}
|
|
4291
|
+
debounceUpdateWithUnityData();
|
|
4281
4292
|
}, [overlayImage]);
|
|
4282
4293
|
useEffect(function () {
|
|
4283
4294
|
var _sceneStore2;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/controls/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,6BAA6B,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,eAAe,EAAE,MAAM,yCAAyC,CAAC;AAE1E,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAG9D,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAEzC,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,eAAe,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/controls/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,6BAA6B,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AACrE,OAAO,EAAE,eAAe,EAAE,MAAM,yCAAyC,CAAC;AAE1E,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAG9D,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAEzC,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,eAAe,qBAuQxD;AAED,MAAM,WAAW,YAAY;IAC3B,YAAY,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,kBAAkB,EAAE,MAAM,KAAK,IAAI,CAAC;IACxG,WAAW,EAAE,MAAM,IAAI,CAAC;CACzB;AAED,wBAAgB,eAAe,CAC7B,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,iBAAiB,EAC1B,QAAQ,EAAE,IAAI,GAAG,aAAa,EAC9B,QAAQ,EAAE,OAAO,EAAE,EACnB,UAAU,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,aAAa,EAAE,OAAO,EAAE,WAAW,EAAE,OAAO,KAAK,IAAI;6BA4DnG,MAAM,WAAW,MAAM,YAAY,MAAM,sBAAsB,MAAM;;EAiDtG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/createCams/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,yCAAyC,CAAC;AAE1E,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAI5C,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,KAAK,EAAE,KAAK,EAAE,SAAS,CAAC,EAAE,gBAAgB,GAAG,eAAe,EAAE,CAmEhG;AAED,wBAAgB,SAAS,CAAC,MAAM,EAAE,gBAAgB,EAAE,KAAK,EAAE,KAAK,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/createCams/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,yCAAyC,CAAC;AAE1E,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAI5C,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,KAAK,EAAE,KAAK,EAAE,SAAS,CAAC,EAAE,gBAAgB,GAAG,eAAe,EAAE,CAmEhG;AAED,wBAAgB,SAAS,CAAC,MAAM,EAAE,gBAAgB,EAAE,KAAK,EAAE,KAAK,QAuC/D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UIStore.d.ts","sourceRoot":"","sources":["../../../../../src/store/UIStore.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;AAOrE,OAAO,iEAAiE,CAAC;AACzE,OAAO,8DAA8D,CAAC;AACtE,OAAO,+DAA+D,CAAC;AACvE,OAAO,sEAAsE,CAAC;AAM9E,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,WAAW,EAAE,6BAA6B,EAAE,MAAM,UAAU,CAAC;AAC/F,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACnD,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,IAAI,EAAE,MAAM,6BAA6B,CAAC;AAEnD,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AAW9C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAQxC,qBAAa,OAAO;IAClB,OAAO,CAAC,UAAU,CAAY;IAC9B,OAAO,CAAC,SAAS,CAAW;IAC5B,OAAO,CAAC,IAAI,CAAyB;IACrC,OAAO,CAAC,uBAAuB,CAAC,CAStB;IACV,OAAO,CAAC,cAAc,CAAC,CAA6F;IACpH,OAAO,CAAC,UAAU,CAAC,CAAiB;IACpC,OAAO,CAAC,gBAAgB,CAAC,CAAmB;IAC5C,OAAO,CAAC,YAAY,CAAgD;IACpE,OAAO,CAAC,MAAM,CAAQ;IACtB,OAAO,CAAC,WAAW,CAA4B;IAC/C,OAAO,CAAC,iBAAiB,CAAC,CAAmB;IAC7C,OAAO,CAAC,OAAO,CAMb;IACF,OAAO,CAAC,QAAQ,CAAC,CAAoD;IACrE,OAAO,CAAC,WAAW,CAAC,CAAU;IAC9B,OAAO,CAAC,aAAa,CAAC,CAAgB;IACtC,OAAO,CAAC,eAAe,CAAU;IACjC,OAAO,CAAC,MAAM,CAAO;IACrB,OAAO,CAAC,UAAU,CAAiB;IACnC,OAAO,CAAC,eAAe,CAAc;IACrC,OAAO,CAAC,YAAY,CAAS;IAC7B,OAAO,CAAC,WAAW,CAAiB;IACpC,OAAO,CAAC,qBAAqB,CAAqC;IAClE,OAAO,CAAC,mBAAmB,CAAiD;IAC5E,OAAO,CAAC,SAAS,CAAU;IAC3B,OAAO,CAAC,YAAY,CAAU;IAC9B,OAAO,CAAC,iCAAiC,CAAgE;gBAEvG,KAAK,EAAE,KAAK,EACZ,UAAU,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,EACrC,SAAS,EAAE,SAAS,EACpB,QAAQ,CAAC,EAAE,QAAQ,EACnB,sBAAsB,CAAC,EAAE,CAAC,SAAS,EAAE,gBAAgB,KAAK,IAAI,EAC9D,YAAY,CAAC,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,OAAO,CAAA;KAAE,EACtD,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,SAAS,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,EAC1G,oBAAoB,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,EAC3C,kBAAkB,CAAC,EAAE,CAAC,IAAI,EAAE,aAAa,KAAK,OAAO,EACrD,QAAQ,CAAC,EAAE,OAAO,EAClB,gCAAgC,CAAC,EAAE,MAAM,6BAA6B,GAAG,SAAS;
|
|
1
|
+
{"version":3,"file":"UIStore.d.ts","sourceRoot":"","sources":["../../../../../src/store/UIStore.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useRealTimeRenderData.d.ts","sourceRoot":"","sources":["../../../../src/useRealTimeRenderData.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAMhC,OAAO,8BAA8B,CAAC;AAUtC,MAAM,CAAC,OAAO,WAAW,EACvB,GAAG,EACH,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,WAAW,EACX,YAAY,EACZ,YAAY,EACZ,YAAY,EACZ,iBAAiB,EACjB,oBAAoB,EACpB,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,QAAQ,EACR,oBAAoB,GACrB,EAAE,KAAK;;
|
|
1
|
+
{"version":3,"file":"useRealTimeRenderData.d.ts","sourceRoot":"","sources":["../../../../src/useRealTimeRenderData.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAMhC,OAAO,8BAA8B,CAAC;AAUtC,MAAM,CAAC,OAAO,WAAW,EACvB,GAAG,EACH,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,WAAW,EACX,YAAY,EACZ,YAAY,EACZ,YAAY,EACZ,iBAAiB,EACjB,oBAAoB,EACpB,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,QAAQ,EACR,oBAAoB,GACrB,EAAE,KAAK;;EAmQP"}
|