@needle-tools/engine 4.8.7 → 4.8.8-next.5cb3196
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/CHANGELOG.md +13 -0
- package/README.md +31 -23
- package/components.needle.json +1 -1
- package/dist/{needle-engine.bundle-lBmpWgFp.umd.cjs → needle-engine.bundle-D83YACrg.umd.cjs} +147 -147
- package/dist/{needle-engine.bundle-B0qaChJt.js → needle-engine.bundle-DJA-sz_-.js} +6955 -6904
- package/dist/{needle-engine.bundle-CZBThBDy.min.js → needle-engine.bundle-SWdTk441.min.js} +144 -144
- package/dist/needle-engine.js +2 -2
- package/dist/needle-engine.min.js +1 -1
- package/dist/needle-engine.umd.cjs +1 -1
- package/lib/engine/engine_addressables.d.ts +12 -12
- package/lib/engine/engine_addressables.js +30 -23
- package/lib/engine/engine_addressables.js.map +1 -1
- package/lib/engine/engine_animation.d.ts +1 -3
- package/lib/engine/engine_animation.js +15 -9
- package/lib/engine/engine_animation.js.map +1 -1
- package/lib/engine/engine_camera.d.ts +8 -1
- package/lib/engine/engine_camera.js +25 -0
- package/lib/engine/engine_camera.js.map +1 -1
- package/lib/engine/engine_context.d.ts +9 -0
- package/lib/engine/engine_context.js +15 -0
- package/lib/engine/engine_context.js.map +1 -1
- package/lib/engine/engine_loaders.callbacks.d.ts +1 -0
- package/lib/engine/engine_loaders.callbacks.js +1 -0
- package/lib/engine/engine_loaders.callbacks.js.map +1 -1
- package/lib/engine/engine_loaders.js +15 -11
- package/lib/engine/engine_loaders.js.map +1 -1
- package/lib/engine/webcomponents/needle-engine.attributes.d.ts +1 -0
- package/lib/engine/webcomponents/needle-engine.d.ts +2 -2
- package/lib/engine/webcomponents/needle-engine.js +19 -21
- package/lib/engine/webcomponents/needle-engine.js.map +1 -1
- package/lib/engine-components/Animation.js +2 -1
- package/lib/engine-components/Animation.js.map +1 -1
- package/lib/engine-components/AnimationUtilsAutoplay.js +1 -6
- package/lib/engine-components/AnimationUtilsAutoplay.js.map +1 -1
- package/lib/engine-components/Camera.d.ts +2 -0
- package/lib/engine-components/Camera.js +5 -1
- package/lib/engine-components/Camera.js.map +1 -1
- package/lib/engine-components/DropListener.d.ts +21 -15
- package/lib/engine-components/DropListener.js +38 -34
- package/lib/engine-components/DropListener.js.map +1 -1
- package/lib/engine-components/LookAtConstraint.d.ts +5 -1
- package/lib/engine-components/LookAtConstraint.js +8 -0
- package/lib/engine-components/LookAtConstraint.js.map +1 -1
- package/lib/engine-components/OrbitControls.d.ts +30 -9
- package/lib/engine-components/OrbitControls.js +53 -14
- package/lib/engine-components/OrbitControls.js.map +1 -1
- package/lib/engine-components/Skybox.js +8 -9
- package/lib/engine-components/Skybox.js.map +1 -1
- package/lib/engine-components/api.d.ts +1 -0
- package/lib/engine-components/api.js.map +1 -1
- package/lib/engine-components/export/usdz/Extension.d.ts +1 -1
- package/lib/engine-components/export/usdz/ThreeUSDZExporter.js +1 -1
- package/lib/engine-components/export/usdz/ThreeUSDZExporter.js.map +1 -1
- package/lib/engine-components/export/usdz/USDZExporter.d.ts +7 -0
- package/lib/engine-components/export/usdz/USDZExporter.js +8 -1
- package/lib/engine-components/export/usdz/USDZExporter.js.map +1 -1
- package/lib/engine-components/webxr/WebXRImageTracking.d.ts +4 -2
- package/lib/engine-components/webxr/WebXRImageTracking.js +117 -81
- package/lib/engine-components/webxr/WebXRImageTracking.js.map +1 -1
- package/package.json +3 -3
- package/plugins/vite/alias.js +45 -23
- package/plugins/vite/editor-connection.js +4 -4
- package/src/engine/engine_addressables.ts +44 -33
- package/src/engine/engine_animation.ts +17 -9
- package/src/engine/engine_camera.ts +40 -1
- package/src/engine/engine_context.ts +21 -1
- package/src/engine/engine_loaders.callbacks.ts +1 -0
- package/src/engine/engine_loaders.ts +18 -13
- package/src/engine/webcomponents/needle-engine.attributes.ts +2 -0
- package/src/engine/webcomponents/needle-engine.ts +21 -21
- package/src/engine-components/Animation.ts +1 -1
- package/src/engine-components/AnimationUtilsAutoplay.ts +1 -6
- package/src/engine-components/Camera.ts +7 -1
- package/src/engine-components/DropListener.ts +44 -34
- package/src/engine-components/LookAtConstraint.ts +9 -1
- package/src/engine-components/OrbitControls.ts +78 -22
- package/src/engine-components/Skybox.ts +9 -10
- package/src/engine-components/api.ts +2 -1
- package/src/engine-components/export/usdz/Extension.ts +1 -1
- package/src/engine-components/export/usdz/ThreeUSDZExporter.ts +1 -1
- package/src/engine-components/export/usdz/USDZExporter.ts +21 -12
- package/src/engine-components/webxr/WebXRImageTracking.ts +138 -90
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import { Matrix4, Object3D, Quaternion, Vector3 } from "three";
|
|
1
|
+
import { ImageBitmapLoader, Matrix4, Object3D, Quaternion, Vector3 } from "three";
|
|
2
2
|
import { Object3DEventMap } from "three";
|
|
3
3
|
|
|
4
4
|
import { isDevEnvironment, showBalloonWarning } from "../../engine/debug/index.js";
|
|
5
5
|
import { AssetReference } from "../../engine/engine_addressables.js";
|
|
6
|
+
import { Context } from "../../engine/engine_context.js";
|
|
6
7
|
import { serializable } from "../../engine/engine_serialization.js";
|
|
7
8
|
import { IGameObject } from "../../engine/engine_types.js";
|
|
8
|
-
import { CircularBuffer, DeviceUtilities, getParam } from "../../engine/engine_utils.js";
|
|
9
|
+
import { CircularBuffer, delay, DeviceUtilities, getParam } from "../../engine/engine_utils.js";
|
|
9
10
|
import { type NeedleXREventArgs, NeedleXRSession } from "../../engine/xr/api.js";
|
|
10
11
|
import { IUSDExporterExtension } from "../../engine-components/export/usdz/Extension.js";
|
|
11
12
|
import { imageToCanvas, USDObject, USDWriter, USDZExporterContext } from "../../engine-components/export/usdz/ThreeUSDZExporter.js";
|
|
@@ -147,90 +148,122 @@ export class WebXRImageTrackingModel {
|
|
|
147
148
|
|
|
148
149
|
class ImageTrackingExtension implements IUSDExporterExtension {
|
|
149
150
|
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
readonly isImageTrackingExtension = true;
|
|
150
154
|
get extensionName() { return "image-tracking"; }
|
|
151
155
|
|
|
152
|
-
private filename: string;
|
|
153
|
-
private widthInMeters: number;
|
|
154
|
-
private imageData: Uint8Array;
|
|
155
156
|
|
|
156
|
-
constructor(
|
|
157
|
-
|
|
158
|
-
this.
|
|
159
|
-
|
|
157
|
+
constructor(private readonly exporter: USDZExporter, private readonly component: WebXRImageTracking) {
|
|
158
|
+
if (debug) console.log(this);
|
|
159
|
+
this.exporter.anchoringType = "image";
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
// set during export
|
|
163
|
+
private shouldExport: boolean = true;
|
|
164
|
+
|
|
165
|
+
private filename: string = "marker.png";
|
|
166
|
+
private imageModel: WebXRImageTrackingModel | null = null;
|
|
167
|
+
|
|
168
|
+
onBeforeBuildDocument(_context: USDZExporterContext) {
|
|
169
|
+
|
|
170
|
+
// check if this extension is the first image tracking extension in the list
|
|
171
|
+
// since iOS can only track one image at a time we only allow one image tracking extension to be active
|
|
172
|
+
// we have to determine this at the earlierst export callback
|
|
173
|
+
// all subsequent export callbacks should then check is shouldExport is set to true
|
|
174
|
+
// this should only be the case for exactly one extension
|
|
175
|
+
const index = this.exporter.extensions
|
|
176
|
+
.filter(e => {
|
|
177
|
+
const ext = (e as ImageTrackingExtension);
|
|
178
|
+
return ext.isImageTrackingExtension && ext.component.activeAndEnabled && ext.component.trackedImages?.length > 0;
|
|
179
|
+
})
|
|
180
|
+
.indexOf(this);
|
|
181
|
+
this.shouldExport = index === 0;
|
|
182
|
+
if (!this.shouldExport) return;
|
|
183
|
+
|
|
184
|
+
// Warn if more than one tracked image is used for USDZ; that's not supported at the moment.
|
|
185
|
+
if (this.component.trackedImages?.length > 1) {
|
|
186
|
+
if (debug || isDevEnvironment()) {
|
|
187
|
+
showBalloonWarning("USDZ: Only one tracked image is supported.");
|
|
188
|
+
console.warn("USDZ: Only one tracked image is supported. Will choose the first one in the trackedImages list");
|
|
189
|
+
}
|
|
190
|
+
}
|
|
160
191
|
}
|
|
161
192
|
|
|
162
193
|
onAfterHierarchy(_context: USDZExporterContext, writer: USDWriter) {
|
|
194
|
+
if (!this.shouldExport) return;
|
|
195
|
+
|
|
163
196
|
const iOSVersion = DeviceUtilities.getiOSVersion();
|
|
164
197
|
const majorVersion = iOSVersion ? parseInt(iOSVersion.split(".")[0]) : 18;
|
|
165
198
|
const workaroundForFB16119331 = majorVersion >= 18;
|
|
166
199
|
const multiplier = workaroundForFB16119331 ? 1 : 100;
|
|
167
200
|
writer.beginBlock(`def Preliminary_ReferenceImage "AnchoringReferenceImage"`);
|
|
168
201
|
writer.appendLine(`uniform asset image = @image_tracking/` + this.filename + `@`);
|
|
169
|
-
writer.appendLine(`uniform double physicalWidth = ` + (this.widthInMeters * multiplier).toFixed(8));
|
|
202
|
+
writer.appendLine(`uniform double physicalWidth = ` + (this.imageModel!.widthInMeters * multiplier).toFixed(8));
|
|
170
203
|
writer.closeBlock();
|
|
204
|
+
|
|
171
205
|
}
|
|
172
206
|
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
if (!imageTracking || !imageTracking.trackedImages) return;
|
|
207
|
+
async onAfterSerialize(context: USDZExporterContext) {
|
|
208
|
+
if (!this.shouldExport) return;
|
|
176
209
|
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
{
|
|
180
|
-
if (isDevEnvironment()) showBalloonWarning("USDZ: Only one tracked image is supported.");
|
|
181
|
-
console.warn("USDZ: Only one tracked image is supported.");
|
|
182
|
-
}
|
|
183
|
-
}
|
|
210
|
+
const imageModel = this.imageModel;
|
|
211
|
+
const img = _imageElements.get(imageModel!.image!)!;
|
|
184
212
|
|
|
185
|
-
|
|
186
|
-
|
|
213
|
+
const canvas = await imageToCanvas(img);
|
|
214
|
+
const blob = await canvas.convertToBlob({ type: 'image/png' });
|
|
215
|
+
const arrayBuffer = await blob.arrayBuffer();
|
|
216
|
+
context.files['image_tracking/' + this.filename] = new Uint8Array(arrayBuffer);
|
|
187
217
|
}
|
|
188
218
|
|
|
189
219
|
onExportObject(object: Object3D<Object3DEventMap>, model: USDObject, _context: USDZExporterContext) {
|
|
190
|
-
|
|
191
|
-
if (!imageTracking || !imageTracking.trackedImages) return;
|
|
220
|
+
if (!this.shouldExport) return;
|
|
192
221
|
|
|
222
|
+
const imageTracking = this.component;
|
|
223
|
+
if (!imageTracking || !imageTracking.trackedImages?.length || !imageTracking.activeAndEnabled) return;
|
|
193
224
|
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
const exporter = GameObject.findObjectOfType(USDZExporter);
|
|
197
|
-
if (!exporter) continue;
|
|
225
|
+
// we only care about the first image
|
|
226
|
+
const trackedImage = imageTracking.trackedImages[0];
|
|
198
227
|
|
|
199
|
-
|
|
228
|
+
if (trackedImage.object?.asset === object) {
|
|
229
|
+
this.imageModel = trackedImage;
|
|
200
230
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
231
|
+
const { scale, target } = this.exporter.getARScaleAndTarget();
|
|
232
|
+
|
|
233
|
+
// We have to reset the image tracking object's position and rotation, because QuickLook applies them.
|
|
234
|
+
// On Android WebXR they're replaced by the tracked data
|
|
235
|
+
let parent = object;
|
|
236
|
+
|
|
237
|
+
const relativeMatrix = new Matrix4();
|
|
238
|
+
if (object !== target) {
|
|
239
|
+
while (parent && parent.parent && parent.parent !== target) {
|
|
240
|
+
parent = parent.parent;
|
|
241
|
+
relativeMatrix.premultiply(parent.matrix);
|
|
210
242
|
}
|
|
211
|
-
const mat = relativeMatrix
|
|
212
|
-
.clone()
|
|
213
|
-
.invert()
|
|
214
|
-
// apply session root scale again after undoing the world transformation
|
|
215
|
-
model.setMatrix(mat.scale(new Vector3(scale, scale, scale)));
|
|
216
|
-
|
|
217
|
-
// Unfortunately looks like Apple's docs are incomplete:
|
|
218
|
-
// https://developer.apple.com/documentation/realitykit/preliminary_anchoringapi#Nest-and-Layer-Anchorable-Prims
|
|
219
|
-
// In practice, it seems that nesting is not allowed – no image tracking will be applied to nested objects.
|
|
220
|
-
// Thus, we can't have separate transforms for "regularly placing content" and "placing content with an image marker".
|
|
221
|
-
// model.extraSchemas.push("Preliminary_AnchoringAPI");
|
|
222
|
-
// model.addEventListener("serialize", (_writer: USDWriter, _context: USDZExporterContext) => {
|
|
223
|
-
// writer.appendLine( `token preliminary:anchoring:type = "image"` );
|
|
224
|
-
// writer.appendLine( `rel preliminary:imageAnchoring:referenceImage = </${context.document.name}/Scenes/Scene/AnchoringReferenceImage>` );
|
|
225
|
-
// });
|
|
226
|
-
|
|
227
|
-
// We can only apply this to the first tracked image, more are not supported by QuickLook.
|
|
228
|
-
break;
|
|
229
243
|
}
|
|
244
|
+
const mat = relativeMatrix
|
|
245
|
+
.clone()
|
|
246
|
+
.invert()
|
|
247
|
+
// apply session root scale again after undoing the world transformation
|
|
248
|
+
model.setMatrix(mat.scale(new Vector3(scale, scale, scale)));
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
// Unfortunately looks like Apple's docs are incomplete:
|
|
252
|
+
// https://developer.apple.com/documentation/realitykit/preliminary_anchoringapi#Nest-and-Layer-Anchorable-Prims
|
|
253
|
+
// In practice, it seems that nesting is not allowed – no image tracking will be applied to nested objects.
|
|
254
|
+
// Thus, we can't have separate transforms for "regularly placing content" and "placing content with an image marker".
|
|
255
|
+
// model.extraSchemas.push("Preliminary_AnchoringAPI");
|
|
256
|
+
// model.addEventListener("serialize", (_writer: USDWriter, _context: USDZExporterContext) => {
|
|
257
|
+
// writer.appendLine( `token preliminary:anchoring:type = "image"` );
|
|
258
|
+
// writer.appendLine( `rel preliminary:imageAnchoring:referenceImage = </${context.document.name}/Scenes/Scene/AnchoringReferenceImage>` );
|
|
259
|
+
// });
|
|
260
|
+
|
|
261
|
+
// We can only apply this to the first tracked image, more are not supported by QuickLook.
|
|
230
262
|
}
|
|
231
263
|
}
|
|
232
264
|
}
|
|
233
265
|
|
|
266
|
+
|
|
234
267
|
/**
|
|
235
268
|
* @category XR
|
|
236
269
|
* @group Components
|
|
@@ -238,14 +271,13 @@ class ImageTrackingExtension implements IUSDExporterExtension {
|
|
|
238
271
|
export class WebXRImageTracking extends Behaviour {
|
|
239
272
|
|
|
240
273
|
@serializable(WebXRImageTrackingModel)
|
|
241
|
-
trackedImages
|
|
274
|
+
trackedImages: WebXRImageTrackingModel[] = [];
|
|
242
275
|
|
|
243
276
|
/** Applies smoothing based on detected jitter to the tracked image. */
|
|
244
277
|
@serializable()
|
|
245
278
|
smooth: boolean = true;
|
|
246
279
|
|
|
247
280
|
private readonly trackedImageIndexMap: Map<number, WebXRImageTrackingModel> = new Map();
|
|
248
|
-
private static _imageElements: Map<string, ImageBitmap | null> = new Map();
|
|
249
281
|
|
|
250
282
|
/** @returns true if image tracking is supported on this device. This may return false at runtime if the user's browser did not enable webxr incubations */
|
|
251
283
|
get supported() { return this._supported; }
|
|
@@ -257,38 +289,24 @@ export class WebXRImageTracking extends Behaviour {
|
|
|
257
289
|
if (!this.trackedImages) return;
|
|
258
290
|
for (const trackedImage of this.trackedImages) {
|
|
259
291
|
if (trackedImage.image) {
|
|
260
|
-
|
|
261
|
-
// already loaded
|
|
262
|
-
}
|
|
263
|
-
else {
|
|
264
|
-
const url = trackedImage.image;
|
|
265
|
-
WebXRImageTracking._imageElements.set(url, null);
|
|
266
|
-
const imageElement = document.createElement("img") as HTMLImageElement;
|
|
267
|
-
imageElement.src = url;
|
|
268
|
-
imageElement.addEventListener("load", async () => {
|
|
269
|
-
const img = await createImageBitmap(imageElement);
|
|
270
|
-
WebXRImageTracking._imageElements.set(url, img);
|
|
271
|
-
|
|
272
|
-
// read back Uint8Array to use in USDZ -
|
|
273
|
-
// TODO better would be to do that once we actually need it
|
|
274
|
-
const canvas = await imageToCanvas(img);
|
|
275
|
-
if (canvas) {
|
|
276
|
-
const blob = await canvas.convertToBlob({ type: 'image/png' });
|
|
277
|
-
const arrayBuffer = await blob.arrayBuffer();
|
|
278
|
-
|
|
279
|
-
const exporter = GameObject.findObjectOfType(USDZExporter);
|
|
280
|
-
if (exporter && this.trackedImages) {
|
|
281
|
-
exporter.extensions.push(
|
|
282
|
-
new ImageTrackingExtension("marker.png", new Uint8Array(arrayBuffer), this.trackedImages[0].widthInMeters)
|
|
283
|
-
);
|
|
284
|
-
exporter.anchoringType = "image";
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
|
-
});
|
|
288
|
-
}
|
|
292
|
+
loadImage(trackedImage.image);
|
|
289
293
|
}
|
|
290
294
|
}
|
|
291
295
|
}
|
|
296
|
+
onEnable() {
|
|
297
|
+
USDZExporter.beforeExport.addEventListener(this.onBeforeUSDZExport);
|
|
298
|
+
}
|
|
299
|
+
onDisable(): void {
|
|
300
|
+
USDZExporter.beforeExport.removeEventListener(this.onBeforeUSDZExport);
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
private onBeforeUSDZExport = (args: { exporter: USDZExporter }) => {
|
|
304
|
+
if (this.activeAndEnabled && this.trackedImages?.length) {
|
|
305
|
+
args.exporter.extensions.push(new ImageTrackingExtension(args.exporter, this));
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
|
|
292
310
|
|
|
293
311
|
onBeforeXR(_mode: XRSessionMode, args: XRSessionInit & { trackedImages: Array<any> }): void {
|
|
294
312
|
// console.log("onXRRequested", args, this.trackedImages)
|
|
@@ -300,7 +318,7 @@ export class WebXRImageTracking extends Behaviour {
|
|
|
300
318
|
args.trackedImages = [];
|
|
301
319
|
for (const trackedImage of this.trackedImages) {
|
|
302
320
|
if (trackedImage.image?.length && trackedImage.widthInMeters > 0) {
|
|
303
|
-
const bitmap =
|
|
321
|
+
const bitmap = _imageElements.get(trackedImage.image);
|
|
304
322
|
if (bitmap) {
|
|
305
323
|
this.trackedImageIndexMap.set(args.trackedImages.length, trackedImage);
|
|
306
324
|
args.trackedImages.push({
|
|
@@ -337,7 +355,7 @@ export class WebXRImageTracking extends Behaviour {
|
|
|
337
355
|
|
|
338
356
|
onLeaveXR(_args: NeedleXREventArgs): void {
|
|
339
357
|
|
|
340
|
-
if(!this.supported && DeviceUtilities.isAndroidDevice()) {
|
|
358
|
+
if (!this.supported && DeviceUtilities.isAndroidDevice()) {
|
|
341
359
|
showBalloonWarning(this.webXRIncubationsWarning);
|
|
342
360
|
}
|
|
343
361
|
|
|
@@ -364,7 +382,7 @@ export class WebXRImageTracking extends Behaviour {
|
|
|
364
382
|
private readonly imageToObjectMap = new Map<WebXRImageTrackingModel, { object: Object3D | null, frames: number, lastTrackingTime: number }>();
|
|
365
383
|
private readonly currentImages: WebXRTrackedImage[] = [];
|
|
366
384
|
|
|
367
|
-
|
|
385
|
+
|
|
368
386
|
private readonly webXRIncubationsWarning = "Image tracking is currently not supported on this device. On Chrome for Android, you can enable the <a target=\"_blank\" href=\"#\" onclick=\"() => console.log('I')\">chrome://flags/#webxr-incubations</a> flag.";
|
|
369
387
|
|
|
370
388
|
onUpdateXR(args: NeedleXREventArgs): void {
|
|
@@ -517,4 +535,34 @@ export class WebXRImageTracking extends Behaviour {
|
|
|
517
535
|
}
|
|
518
536
|
}
|
|
519
537
|
}
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
const _imageElements: Map<string, ImageBitmap | null> = new Map();
|
|
544
|
+
const _imageLoadingPromises: Map<string, Promise<boolean>> = new Map();
|
|
545
|
+
|
|
546
|
+
async function loadImage(url: string) {
|
|
547
|
+
if (_imageElements.has(url)) {
|
|
548
|
+
if (_imageLoadingPromises.has(url)) return _imageLoadingPromises.get(url);
|
|
549
|
+
return Promise.resolve(true);
|
|
550
|
+
}
|
|
551
|
+
const promise = new Promise<boolean>(res => {
|
|
552
|
+
_imageElements.set(url, null);
|
|
553
|
+
const imageElement = document.createElement("img") as HTMLImageElement;
|
|
554
|
+
imageElement.src = url;
|
|
555
|
+
imageElement.addEventListener("load", async () => {
|
|
556
|
+
const img = await createImageBitmap(imageElement);
|
|
557
|
+
_imageElements.set(url, img);
|
|
558
|
+
res(true);
|
|
559
|
+
});
|
|
560
|
+
});
|
|
561
|
+
|
|
562
|
+
_imageLoadingPromises.set(url, promise);
|
|
563
|
+
promise.finally(() => {
|
|
564
|
+
_imageLoadingPromises.delete(url);
|
|
565
|
+
});
|
|
566
|
+
|
|
567
|
+
return promise;
|
|
520
568
|
}
|