@cesdk/engine 1.60.0-nightly.20250830 → 1.60.0-nightly.20250902

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/index.d.ts CHANGED
@@ -1466,11 +1466,12 @@ export declare class BlockAPI {
1466
1466
  /**
1467
1467
  * Loads blocks from a remote archive URL.
1468
1468
  *
1469
+ * The URL should be that of a file previously saved with `block.saveToArchive`.
1469
1470
  * The blocks are not attached by default and won't be visible until attached to a page or the scene.
1470
1471
  * The UUID of the loaded blocks is replaced with a new one.
1471
1472
  *
1472
1473
  * @category Block Lifecycle
1473
- * @param url - The URL to load the blocks from.
1474
+ * @param url - The URL of the blocks archive file.
1474
1475
  * @returns A promise that resolves with a list of handles representing the found blocks or an error.
1475
1476
  * @example
1476
1477
  * ```typescript
@@ -7520,7 +7521,7 @@ export declare class SceneAPI {
7520
7521
  * calls on this engines instance.
7521
7522
  *
7522
7523
  * @category Scene Loading
7523
- * @param url - The URL of the scene file.
7524
+ * @param url - The URL of the scene archive file.
7524
7525
  * @param overrideEditorConfig - Whether to override editor configuration with settings and data from the scene file. Defaults to false.
7525
7526
  * @returns scene A promise that resolves once the scene was loaded or rejects with an error otherwise.
7526
7527
  */