@cesdk/engine 1.62.0-nightly.20251009 → 1.62.0-rc.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/assets/core/{cesdk-v1.62.0-nightly.20251009-JLIQVVYG.wasm → cesdk-v1.62.0-rc.0-WV6X7KRA.wasm} +0 -0
- package/assets/core/worker-host-v1.62.0-rc.0.js +1 -0
- package/index.d.ts +2 -12
- package/index.js +1 -1
- package/package.json +1 -1
- package/assets/core/worker-host-v1.62.0-nightly.20251009.js +0 -1
- /package/assets/core/{cesdk-v1.62.0-nightly.20251009-44YCFRT6.data → cesdk-v1.62.0-rc.0-44YCFRT6.data} +0 -0
package/index.d.ts
CHANGED
|
@@ -187,9 +187,6 @@ export declare interface Asset {
|
|
|
187
187
|
*
|
|
188
188
|
* @categoryDescription Event Subscriptions
|
|
189
189
|
* Subscribe to asset source changes and lifecycle events.
|
|
190
|
-
*
|
|
191
|
-
* @categoryDescription Experimental Features
|
|
192
|
-
* Experimental middleware system for custom asset processing workflows.
|
|
193
190
|
*/
|
|
194
191
|
export declare class AssetAPI {
|
|
195
192
|
#private;
|
|
@@ -5550,7 +5547,7 @@ export declare interface CompleteAssetResult extends AssetResult {
|
|
|
5550
5547
|
*/
|
|
5551
5548
|
export declare interface Configuration {
|
|
5552
5549
|
baseURL: string;
|
|
5553
|
-
license
|
|
5550
|
+
license?: string;
|
|
5554
5551
|
userId?: string;
|
|
5555
5552
|
core: {
|
|
5556
5553
|
baseURL: string;
|
|
@@ -6831,14 +6828,7 @@ export declare interface EnginePlugin {
|
|
|
6831
6828
|
* @public
|
|
6832
6829
|
*/
|
|
6833
6830
|
export declare type EnginePluginContext = {
|
|
6834
|
-
engine:
|
|
6835
|
-
asset: AssetAPI;
|
|
6836
|
-
block: BlockAPI;
|
|
6837
|
-
scene: SceneAPI;
|
|
6838
|
-
editor: EditorAPI;
|
|
6839
|
-
event: EventAPI;
|
|
6840
|
-
variable: VariableAPI;
|
|
6841
|
-
};
|
|
6831
|
+
engine: CreativeEngine;
|
|
6842
6832
|
};
|
|
6843
6833
|
|
|
6844
6834
|
/**
|