@dcl/playground-assets 7.8.22-16418077836.commit-4ef4954 → 7.8.22-16440664916.commit-1438afe
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 +86 -0
- package/dist/beta.d.ts +86 -0
- package/dist/index.bundled.d.ts +86 -0
- package/dist/index.js +5 -5
- package/dist/index.js.map +4 -4
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +86 -0
- package/etc/playground-assets.api.json +927 -56
- package/etc/playground-assets.api.md +57 -0
- package/package.json +4 -4
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/sdk",
|
3
3
|
"description": "",
|
4
|
-
"version": "7.8.22-
|
4
|
+
"version": "7.8.22-16440664916.commit-1438afe",
|
5
5
|
"author": "Decentraland",
|
6
6
|
"dependencies": {
|
7
7
|
"@dcl/ecs": "file:../ecs",
|
@@ -35,5 +35,5 @@
|
|
35
35
|
},
|
36
36
|
"types": "./index.d.ts",
|
37
37
|
"typings": "./index.d.ts",
|
38
|
-
"commit": "
|
38
|
+
"commit": "1438afe518f993c10962e46948ab455034d7bdc2"
|
39
39
|
}
|
@@ -1308,6 +1308,7 @@ export declare const componentDefinitionByName: {
|
|
1308
1308
|
"core::EngineInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBEngineInfo>>;
|
1309
1309
|
"core::GltfContainer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainer>>;
|
1310
1310
|
"core::GltfContainerLoadingState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>>;
|
1311
|
+
"core::GltfNodeModifiers": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNodeModifiers>>;
|
1311
1312
|
"core::InputModifier": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBInputModifier>>;
|
1312
1313
|
"core::MainCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMainCamera>>;
|
1313
1314
|
"core::Material": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMaterial>>;
|
@@ -1322,6 +1323,7 @@ export declare const componentDefinitionByName: {
|
|
1322
1323
|
"core::Raycast": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRaycast>>;
|
1323
1324
|
"core::RaycastResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRaycastResult>>;
|
1324
1325
|
"core::RealmInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRealmInfo>>;
|
1326
|
+
"core::SkyboxTime": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBSkyboxTime>>;
|
1325
1327
|
"core::TextShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTextShape>>;
|
1326
1328
|
"core::Tween": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTween>>;
|
1327
1329
|
"core::TweenSequence": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTweenSequence>>;
|
@@ -2065,6 +2067,9 @@ export declare const GltfContainer: LastWriteWinElementSetComponentDefinition<PB
|
|
2065
2067
|
/** @public */
|
2066
2068
|
export declare const GltfContainerLoadingState: LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>;
|
2067
2069
|
|
2070
|
+
/** @public */
|
2071
|
+
export declare const GltfNodeModifiers: LastWriteWinElementSetComponentDefinition<PBGltfNodeModifiers>;
|
2072
|
+
|
2068
2073
|
/**
|
2069
2074
|
* @public
|
2070
2075
|
*/
|
@@ -4511,6 +4516,51 @@ export declare namespace PBGltfContainerLoadingState {
|
|
4511
4516
|
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfContainerLoadingState;
|
4512
4517
|
}
|
4513
4518
|
|
4519
|
+
/**
|
4520
|
+
* GltfNodeModifiers component is to be used attached to entities that have the GltfContainer component.
|
4521
|
+
*
|
4522
|
+
* This allows to override either the Material or the Casting Shadows behaviour of the target GLTF Node.
|
4523
|
+
*
|
4524
|
+
* * If the 'path' of the first modifier in the collection is an empty string: the configuration will
|
4525
|
+
* affect all of the GLTF Nodes (as a global modifier).
|
4526
|
+
* * Otherwise, for the modifiers whose 'path' is found in the GLTF hierarchy, the modifier will affect only
|
4527
|
+
* the target Nodes.
|
4528
|
+
*/
|
4529
|
+
/**
|
4530
|
+
* @public
|
4531
|
+
*/
|
4532
|
+
export declare interface PBGltfNodeModifiers {
|
4533
|
+
modifiers: PBGltfNodeModifiers_GltfNodeModifier[];
|
4534
|
+
}
|
4535
|
+
|
4536
|
+
/**
|
4537
|
+
* @public
|
4538
|
+
*/
|
4539
|
+
export declare namespace PBGltfNodeModifiers {
|
4540
|
+
export function encode(message: PBGltfNodeModifiers, writer?: _m0.Writer): _m0.Writer;
|
4541
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfNodeModifiers;
|
4542
|
+
}
|
4543
|
+
|
4544
|
+
/**
|
4545
|
+
* @public
|
4546
|
+
*/
|
4547
|
+
export declare interface PBGltfNodeModifiers_GltfNodeModifier {
|
4548
|
+
/** The GLTF hierarchy path of the target Node to be affected */
|
4549
|
+
path: string;
|
4550
|
+
/** The casting shadows enabled override */
|
4551
|
+
castShadows?: boolean | undefined;
|
4552
|
+
/** The Material that will be overridden on the target Node */
|
4553
|
+
material?: PBMaterial | undefined;
|
4554
|
+
}
|
4555
|
+
|
4556
|
+
/**
|
4557
|
+
* @public
|
4558
|
+
*/
|
4559
|
+
export declare namespace PBGltfNodeModifiers_GltfNodeModifier {
|
4560
|
+
export function encode(message: PBGltfNodeModifiers_GltfNodeModifier, writer?: _m0.Writer): _m0.Writer;
|
4561
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfNodeModifiers_GltfNodeModifier;
|
4562
|
+
}
|
4563
|
+
|
4514
4564
|
/**
|
4515
4565
|
* @public
|
4516
4566
|
*/
|
@@ -5223,6 +5273,28 @@ export declare namespace PBRealmInfo {
|
|
5223
5273
|
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBRealmInfo;
|
5224
5274
|
}
|
5225
5275
|
|
5276
|
+
/**
|
5277
|
+
* The SkyboxTime component allows controlling the time of day for the skybox,
|
5278
|
+
* affecting the lighting and appearance of the sky in the scene.
|
5279
|
+
*/
|
5280
|
+
/**
|
5281
|
+
* @public
|
5282
|
+
*/
|
5283
|
+
export declare interface PBSkyboxTime {
|
5284
|
+
/** fixed time of day, represented as a number of seconds since the start of the day, where 0 is 00:00hs, 43200 is 12:00hs and 86400 is 24:00hs */
|
5285
|
+
fixedTime: number;
|
5286
|
+
/** default = TransitionMode.TM_FORWARD, controls the direction of time transitions */
|
5287
|
+
transitionMode?: TransitionMode | undefined;
|
5288
|
+
}
|
5289
|
+
|
5290
|
+
/**
|
5291
|
+
* @public
|
5292
|
+
*/
|
5293
|
+
export declare namespace PBSkyboxTime {
|
5294
|
+
export function encode(message: PBSkyboxTime, writer?: _m0.Writer): _m0.Writer;
|
5295
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBSkyboxTime;
|
5296
|
+
}
|
5297
|
+
|
5226
5298
|
/**
|
5227
5299
|
* The TextShape component renders customizable floating text.
|
5228
5300
|
*
|
@@ -7081,6 +7153,9 @@ export declare namespace Schemas {
|
|
7081
7153
|
}) => void;
|
7082
7154
|
}
|
7083
7155
|
|
7156
|
+
/** @public */
|
7157
|
+
export declare const SkyboxTime: LastWriteWinElementSetComponentDefinition<PBSkyboxTime>;
|
7158
|
+
|
7084
7159
|
/**
|
7085
7160
|
* @public
|
7086
7161
|
*/
|
@@ -7347,6 +7422,17 @@ export declare type TransformType = {
|
|
7347
7422
|
*/
|
7348
7423
|
export declare type TransformTypeWithOptionals = Partial<TransformType>;
|
7349
7424
|
|
7425
|
+
/** Controls the direction for animated skybox transitions */
|
7426
|
+
/**
|
7427
|
+
* @public
|
7428
|
+
*/
|
7429
|
+
export declare const enum TransitionMode {
|
7430
|
+
/** TM_FORWARD - transitions forward (default) */
|
7431
|
+
TM_FORWARD = 0,
|
7432
|
+
/** TM_BACKWARD - transitions backward */
|
7433
|
+
TM_BACKWARD = 1
|
7434
|
+
}
|
7435
|
+
|
7350
7436
|
/**
|
7351
7437
|
* @public
|
7352
7438
|
*/
|