@dcl/playground-assets 7.1.9-4800243746.commit-c0e370e → 7.1.9-4810794032.commit-8752a16
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 +61 -5
- package/dist/beta.d.ts +61 -5
- package/dist/index.bundled.d.ts +61 -5
- package/dist/index.js +6 -6
- package/dist/index.js.map +4 -4
- package/dist/playground/sdk/dcl-sdk.package.json +3 -3
- package/dist/playground-assets.d.ts +61 -5
- package/etc/playground-assets.api.json +509 -6
- package/etc/playground-assets.api.md +39 -0
- package/package.json +4 -4
|
@@ -484,7 +484,9 @@ export const componentDefinitionByName: {
|
|
|
484
484
|
"core::Billboard": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBBillboard>>;
|
|
485
485
|
"core::CameraMode": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraMode>>;
|
|
486
486
|
"core::CameraModeArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraModeArea>>;
|
|
487
|
+
"core::EngineInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBEngineInfo>>;
|
|
487
488
|
"core::GltfContainer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainer>>;
|
|
489
|
+
"core::GltfContainerLoadingState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>>;
|
|
488
490
|
"core::Material": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMaterial>>;
|
|
489
491
|
"core::MeshCollider": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshCollider>>;
|
|
490
492
|
"core::MeshRenderer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshRenderer>>;
|
|
@@ -745,6 +747,9 @@ export type EngineEvent<T extends IEventNames = IEventNames, V = IEvents[T]> = {
|
|
|
745
747
|
data: Readonly<V>;
|
|
746
748
|
};
|
|
747
749
|
|
|
750
|
+
// @public (undocumented)
|
|
751
|
+
export const EngineInfo: LastWriteWinElementSetComponentDefinition<PBEngineInfo>;
|
|
752
|
+
|
|
748
753
|
// Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
|
|
749
754
|
// Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
|
|
750
755
|
// Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
|
|
@@ -913,6 +918,9 @@ export type GlobalTargetRaycastSystemOptions = {
|
|
|
913
918
|
// @public (undocumented)
|
|
914
919
|
export const GltfContainer: LastWriteWinElementSetComponentDefinition<PBGltfContainer>;
|
|
915
920
|
|
|
921
|
+
// @public (undocumented)
|
|
922
|
+
export const GltfContainerLoadingState: LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>;
|
|
923
|
+
|
|
916
924
|
// @public (undocumented)
|
|
917
925
|
export interface GrowOnlyValueSetComponentDefinition<T> extends BaseComponent<T> {
|
|
918
926
|
addValue(entity: Entity, val: DeepReadonly<T>): DeepReadonlySet<T>;
|
|
@@ -1323,6 +1331,20 @@ export type Listeners = {
|
|
|
1323
1331
|
onMouseUp?: Callback;
|
|
1324
1332
|
};
|
|
1325
1333
|
|
|
1334
|
+
// @public (undocumented)
|
|
1335
|
+
export const enum LoadingState {
|
|
1336
|
+
// (undocumented)
|
|
1337
|
+
FINISHED = 4,
|
|
1338
|
+
// (undocumented)
|
|
1339
|
+
FINISHED_WITH_ERROR = 3,
|
|
1340
|
+
// (undocumented)
|
|
1341
|
+
LOADING = 1,
|
|
1342
|
+
// (undocumented)
|
|
1343
|
+
NOT_FOUND = 2,
|
|
1344
|
+
// (undocumented)
|
|
1345
|
+
UNKNOWN = 0
|
|
1346
|
+
}
|
|
1347
|
+
|
|
1326
1348
|
// Warning: (ae-missing-release-tag) "LocalDirectionRaycastOptions" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
|
|
1327
1349
|
//
|
|
1328
1350
|
// @public (undocumented)
|
|
@@ -1891,11 +1913,26 @@ export interface PBColor4 {
|
|
|
1891
1913
|
r: number;
|
|
1892
1914
|
}
|
|
1893
1915
|
|
|
1916
|
+
// @public (undocumented)
|
|
1917
|
+
export interface PBEngineInfo {
|
|
1918
|
+
frameNumber: number;
|
|
1919
|
+
tickNumber: number;
|
|
1920
|
+
totalRuntime: number;
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1894
1923
|
// @public (undocumented)
|
|
1895
1924
|
export interface PBGltfContainer {
|
|
1925
|
+
createPointerColliders?: boolean | undefined;
|
|
1926
|
+
disablePhysicsColliders?: boolean | undefined;
|
|
1896
1927
|
src: string;
|
|
1897
1928
|
}
|
|
1898
1929
|
|
|
1930
|
+
// @public (undocumented)
|
|
1931
|
+
export interface PBGltfContainerLoadingState {
|
|
1932
|
+
// (undocumented)
|
|
1933
|
+
currentState: LoadingState;
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1899
1936
|
// @public (undocumented)
|
|
1900
1937
|
export interface PBMaterial {
|
|
1901
1938
|
// (undocumented)
|
|
@@ -2045,6 +2082,7 @@ export interface PBPointerEventsResult {
|
|
|
2045
2082
|
hit: RaycastHit | undefined;
|
|
2046
2083
|
// (undocumented)
|
|
2047
2084
|
state: PointerEventType;
|
|
2085
|
+
tickNumber: number;
|
|
2048
2086
|
timestamp: number;
|
|
2049
2087
|
}
|
|
2050
2088
|
|
|
@@ -2092,6 +2130,7 @@ export interface PBRaycastResult {
|
|
|
2092
2130
|
direction: PBVector3 | undefined;
|
|
2093
2131
|
globalOrigin: PBVector3 | undefined;
|
|
2094
2132
|
hits: RaycastHit[];
|
|
2133
|
+
tickNumber: number;
|
|
2095
2134
|
timestamp?: number | undefined;
|
|
2096
2135
|
}
|
|
2097
2136
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/playground-assets",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "7.1.9-
|
|
4
|
+
"version": "7.1.9-4810794032.commit-8752a16",
|
|
5
5
|
"author": "Decentraland",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@dcl/js-runtime": "7.1.9-
|
|
8
|
-
"@dcl/sdk": "7.1.9-
|
|
7
|
+
"@dcl/js-runtime": "7.1.9-4810794032.commit-8752a16",
|
|
8
|
+
"@dcl/sdk": "7.1.9-4810794032.commit-8752a16"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
11
|
"@microsoft/api-extractor": "^7.33.8"
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
},
|
|
29
29
|
"types": "./dist/index.d.ts",
|
|
30
30
|
"typings": "./dist/index.d.ts",
|
|
31
|
-
"commit": "
|
|
31
|
+
"commit": "8752a16ce1389f4baa8cdb218ebcf1c2ed2ba97c"
|
|
32
32
|
}
|