@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 CHANGED
@@ -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
  */
package/dist/beta.d.ts CHANGED
@@ -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
  */
@@ -4483,6 +4488,51 @@ export declare namespace PBGltfContainerLoadingState {
4483
4488
  export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfContainerLoadingState;
4484
4489
  }
4485
4490
 
4491
+ /**
4492
+ * GltfNodeModifiers component is to be used attached to entities that have the GltfContainer component.
4493
+ *
4494
+ * This allows to override either the Material or the Casting Shadows behaviour of the target GLTF Node.
4495
+ *
4496
+ * * If the 'path' of the first modifier in the collection is an empty string: the configuration will
4497
+ * affect all of the GLTF Nodes (as a global modifier).
4498
+ * * Otherwise, for the modifiers whose 'path' is found in the GLTF hierarchy, the modifier will affect only
4499
+ * the target Nodes.
4500
+ */
4501
+ /**
4502
+ * @public
4503
+ */
4504
+ export declare interface PBGltfNodeModifiers {
4505
+ modifiers: PBGltfNodeModifiers_GltfNodeModifier[];
4506
+ }
4507
+
4508
+ /**
4509
+ * @public
4510
+ */
4511
+ export declare namespace PBGltfNodeModifiers {
4512
+ export function encode(message: PBGltfNodeModifiers, writer?: _m0.Writer): _m0.Writer;
4513
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfNodeModifiers;
4514
+ }
4515
+
4516
+ /**
4517
+ * @public
4518
+ */
4519
+ export declare interface PBGltfNodeModifiers_GltfNodeModifier {
4520
+ /** The GLTF hierarchy path of the target Node to be affected */
4521
+ path: string;
4522
+ /** The casting shadows enabled override */
4523
+ castShadows?: boolean | undefined;
4524
+ /** The Material that will be overridden on the target Node */
4525
+ material?: PBMaterial | undefined;
4526
+ }
4527
+
4528
+ /**
4529
+ * @public
4530
+ */
4531
+ export declare namespace PBGltfNodeModifiers_GltfNodeModifier {
4532
+ export function encode(message: PBGltfNodeModifiers_GltfNodeModifier, writer?: _m0.Writer): _m0.Writer;
4533
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfNodeModifiers_GltfNodeModifier;
4534
+ }
4535
+
4486
4536
  /**
4487
4537
  * @public
4488
4538
  */
@@ -5195,6 +5245,28 @@ export declare namespace PBRealmInfo {
5195
5245
  export function decode(input: _m0.Reader | Uint8Array, length?: number): PBRealmInfo;
5196
5246
  }
5197
5247
 
5248
+ /**
5249
+ * The SkyboxTime component allows controlling the time of day for the skybox,
5250
+ * affecting the lighting and appearance of the sky in the scene.
5251
+ */
5252
+ /**
5253
+ * @public
5254
+ */
5255
+ export declare interface PBSkyboxTime {
5256
+ /** 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 */
5257
+ fixedTime: number;
5258
+ /** default = TransitionMode.TM_FORWARD, controls the direction of time transitions */
5259
+ transitionMode?: TransitionMode | undefined;
5260
+ }
5261
+
5262
+ /**
5263
+ * @public
5264
+ */
5265
+ export declare namespace PBSkyboxTime {
5266
+ export function encode(message: PBSkyboxTime, writer?: _m0.Writer): _m0.Writer;
5267
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBSkyboxTime;
5268
+ }
5269
+
5198
5270
  /**
5199
5271
  * The TextShape component renders customizable floating text.
5200
5272
  *
@@ -7053,6 +7125,9 @@ export declare namespace Schemas {
7053
7125
  }) => void;
7054
7126
  }
7055
7127
 
7128
+ /** @public */
7129
+ export declare const SkyboxTime: LastWriteWinElementSetComponentDefinition<PBSkyboxTime>;
7130
+
7056
7131
  /**
7057
7132
  * @public
7058
7133
  */
@@ -7314,6 +7389,17 @@ export declare type TransformType = {
7314
7389
  */
7315
7390
  export declare type TransformTypeWithOptionals = Partial<TransformType>;
7316
7391
 
7392
+ /** Controls the direction for animated skybox transitions */
7393
+ /**
7394
+ * @public
7395
+ */
7396
+ export declare const enum TransitionMode {
7397
+ /** TM_FORWARD - transitions forward (default) */
7398
+ TM_FORWARD = 0,
7399
+ /** TM_BACKWARD - transitions backward */
7400
+ TM_BACKWARD = 1
7401
+ }
7402
+
7317
7403
  /**
7318
7404
  * @public
7319
7405
  */
@@ -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
  */
@@ -4483,6 +4488,51 @@ export declare namespace PBGltfContainerLoadingState {
4483
4488
  export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfContainerLoadingState;
4484
4489
  }
4485
4490
 
4491
+ /**
4492
+ * GltfNodeModifiers component is to be used attached to entities that have the GltfContainer component.
4493
+ *
4494
+ * This allows to override either the Material or the Casting Shadows behaviour of the target GLTF Node.
4495
+ *
4496
+ * * If the 'path' of the first modifier in the collection is an empty string: the configuration will
4497
+ * affect all of the GLTF Nodes (as a global modifier).
4498
+ * * Otherwise, for the modifiers whose 'path' is found in the GLTF hierarchy, the modifier will affect only
4499
+ * the target Nodes.
4500
+ */
4501
+ /**
4502
+ * @public
4503
+ */
4504
+ export declare interface PBGltfNodeModifiers {
4505
+ modifiers: PBGltfNodeModifiers_GltfNodeModifier[];
4506
+ }
4507
+
4508
+ /**
4509
+ * @public
4510
+ */
4511
+ export declare namespace PBGltfNodeModifiers {
4512
+ export function encode(message: PBGltfNodeModifiers, writer?: _m0.Writer): _m0.Writer;
4513
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfNodeModifiers;
4514
+ }
4515
+
4516
+ /**
4517
+ * @public
4518
+ */
4519
+ export declare interface PBGltfNodeModifiers_GltfNodeModifier {
4520
+ /** The GLTF hierarchy path of the target Node to be affected */
4521
+ path: string;
4522
+ /** The casting shadows enabled override */
4523
+ castShadows?: boolean | undefined;
4524
+ /** The Material that will be overridden on the target Node */
4525
+ material?: PBMaterial | undefined;
4526
+ }
4527
+
4528
+ /**
4529
+ * @public
4530
+ */
4531
+ export declare namespace PBGltfNodeModifiers_GltfNodeModifier {
4532
+ export function encode(message: PBGltfNodeModifiers_GltfNodeModifier, writer?: _m0.Writer): _m0.Writer;
4533
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfNodeModifiers_GltfNodeModifier;
4534
+ }
4535
+
4486
4536
  /**
4487
4537
  * @public
4488
4538
  */
@@ -5195,6 +5245,28 @@ export declare namespace PBRealmInfo {
5195
5245
  export function decode(input: _m0.Reader | Uint8Array, length?: number): PBRealmInfo;
5196
5246
  }
5197
5247
 
5248
+ /**
5249
+ * The SkyboxTime component allows controlling the time of day for the skybox,
5250
+ * affecting the lighting and appearance of the sky in the scene.
5251
+ */
5252
+ /**
5253
+ * @public
5254
+ */
5255
+ export declare interface PBSkyboxTime {
5256
+ /** 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 */
5257
+ fixedTime: number;
5258
+ /** default = TransitionMode.TM_FORWARD, controls the direction of time transitions */
5259
+ transitionMode?: TransitionMode | undefined;
5260
+ }
5261
+
5262
+ /**
5263
+ * @public
5264
+ */
5265
+ export declare namespace PBSkyboxTime {
5266
+ export function encode(message: PBSkyboxTime, writer?: _m0.Writer): _m0.Writer;
5267
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBSkyboxTime;
5268
+ }
5269
+
5198
5270
  /**
5199
5271
  * The TextShape component renders customizable floating text.
5200
5272
  *
@@ -7053,6 +7125,9 @@ export declare namespace Schemas {
7053
7125
  }) => void;
7054
7126
  }
7055
7127
 
7128
+ /** @public */
7129
+ export declare const SkyboxTime: LastWriteWinElementSetComponentDefinition<PBSkyboxTime>;
7130
+
7056
7131
  /**
7057
7132
  * @public
7058
7133
  */
@@ -7314,6 +7389,17 @@ export declare type TransformType = {
7314
7389
  */
7315
7390
  export declare type TransformTypeWithOptionals = Partial<TransformType>;
7316
7391
 
7392
+ /** Controls the direction for animated skybox transitions */
7393
+ /**
7394
+ * @public
7395
+ */
7396
+ export declare const enum TransitionMode {
7397
+ /** TM_FORWARD - transitions forward (default) */
7398
+ TM_FORWARD = 0,
7399
+ /** TM_BACKWARD - transitions backward */
7400
+ TM_BACKWARD = 1
7401
+ }
7402
+
7317
7403
  /**
7318
7404
  * @public
7319
7405
  */