@dcl/playground-assets 7.20.5-22683934262.commit-8314528 → 7.20.5-22869988861.commit-9d0cc3a
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/alpha.d.ts +15 -0
- package/dist/beta.d.ts +15 -0
- package/dist/index.bundled.d.ts +15 -0
- package/dist/index.js +6 -6
- package/dist/index.js.map +4 -4
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +15 -0
- package/dist/tsdoc-metadata.json +1 -1
- package/etc/playground-assets.api.json +133 -1
- package/etc/playground-assets.api.md +6 -0
- package/package.json +4 -4
package/dist/alpha.d.ts
CHANGED
|
@@ -2205,6 +2205,15 @@ export declare const getDefaultOpts: (opts?: Partial<EventSystemOptions>) => Eve
|
|
|
2205
2205
|
*/
|
|
2206
2206
|
export declare function getEntitiesWithParent(engine: Pick<IEngine, 'getEntitiesWith' | 'defineComponentFromSchema'>, parent: Entity): Entity[];
|
|
2207
2207
|
|
|
2208
|
+
/**
|
|
2209
|
+
* Internal utilities for standardized globalThis access.
|
|
2210
|
+
*/
|
|
2211
|
+
/**
|
|
2212
|
+
* Type-safe globalThis property access.
|
|
2213
|
+
* @public
|
|
2214
|
+
*/
|
|
2215
|
+
export declare function getGlobal<T>(key: string): T | undefined;
|
|
2216
|
+
|
|
2208
2217
|
/**
|
|
2209
2218
|
* Get the world position of an entity, taking into account the full parent hierarchy.
|
|
2210
2219
|
* This computes the world-space position by accumulating all parent transforms
|
|
@@ -7921,6 +7930,12 @@ export declare namespace Schemas {
|
|
|
7921
7930
|
}) => void;
|
|
7922
7931
|
}
|
|
7923
7932
|
|
|
7933
|
+
/**
|
|
7934
|
+
* Sets a globalThis property as a polyfill (only if undefined/null).
|
|
7935
|
+
* @public
|
|
7936
|
+
*/
|
|
7937
|
+
export declare function setGlobalPolyfill<T>(key: string, value: T): void;
|
|
7938
|
+
|
|
7924
7939
|
/**
|
|
7925
7940
|
* @public
|
|
7926
7941
|
* Parameters for setMoveRotateScale. At least one of position, rotation, or scale must be provided.
|
package/dist/beta.d.ts
CHANGED
|
@@ -2205,6 +2205,15 @@ export declare const getDefaultOpts: (opts?: Partial<EventSystemOptions>) => Eve
|
|
|
2205
2205
|
*/
|
|
2206
2206
|
export declare function getEntitiesWithParent(engine: Pick<IEngine, 'getEntitiesWith' | 'defineComponentFromSchema'>, parent: Entity): Entity[];
|
|
2207
2207
|
|
|
2208
|
+
/**
|
|
2209
|
+
* Internal utilities for standardized globalThis access.
|
|
2210
|
+
*/
|
|
2211
|
+
/**
|
|
2212
|
+
* Type-safe globalThis property access.
|
|
2213
|
+
* @public
|
|
2214
|
+
*/
|
|
2215
|
+
export declare function getGlobal<T>(key: string): T | undefined;
|
|
2216
|
+
|
|
2208
2217
|
/**
|
|
2209
2218
|
* Get the world position of an entity, taking into account the full parent hierarchy.
|
|
2210
2219
|
* This computes the world-space position by accumulating all parent transforms
|
|
@@ -7893,6 +7902,12 @@ export declare namespace Schemas {
|
|
|
7893
7902
|
}) => void;
|
|
7894
7903
|
}
|
|
7895
7904
|
|
|
7905
|
+
/**
|
|
7906
|
+
* Sets a globalThis property as a polyfill (only if undefined/null).
|
|
7907
|
+
* @public
|
|
7908
|
+
*/
|
|
7909
|
+
export declare function setGlobalPolyfill<T>(key: string, value: T): void;
|
|
7910
|
+
|
|
7896
7911
|
/**
|
|
7897
7912
|
* @public
|
|
7898
7913
|
* Parameters for setMoveRotateScale. At least one of position, rotation, or scale must be provided.
|
package/dist/index.bundled.d.ts
CHANGED
|
@@ -2205,6 +2205,15 @@ export declare const getDefaultOpts: (opts?: Partial<EventSystemOptions>) => Eve
|
|
|
2205
2205
|
*/
|
|
2206
2206
|
export declare function getEntitiesWithParent(engine: Pick<IEngine, 'getEntitiesWith' | 'defineComponentFromSchema'>, parent: Entity): Entity[];
|
|
2207
2207
|
|
|
2208
|
+
/**
|
|
2209
|
+
* Internal utilities for standardized globalThis access.
|
|
2210
|
+
*/
|
|
2211
|
+
/**
|
|
2212
|
+
* Type-safe globalThis property access.
|
|
2213
|
+
* @public
|
|
2214
|
+
*/
|
|
2215
|
+
export declare function getGlobal<T>(key: string): T | undefined;
|
|
2216
|
+
|
|
2208
2217
|
/**
|
|
2209
2218
|
* Get the world position of an entity, taking into account the full parent hierarchy.
|
|
2210
2219
|
* This computes the world-space position by accumulating all parent transforms
|
|
@@ -7893,6 +7902,12 @@ export declare namespace Schemas {
|
|
|
7893
7902
|
}) => void;
|
|
7894
7903
|
}
|
|
7895
7904
|
|
|
7905
|
+
/**
|
|
7906
|
+
* Sets a globalThis property as a polyfill (only if undefined/null).
|
|
7907
|
+
* @public
|
|
7908
|
+
*/
|
|
7909
|
+
export declare function setGlobalPolyfill<T>(key: string, value: T): void;
|
|
7910
|
+
|
|
7896
7911
|
/**
|
|
7897
7912
|
* @public
|
|
7898
7913
|
* Parameters for setMoveRotateScale. At least one of position, rotation, or scale must be provided.
|