@dcl/playground-assets 7.22.4-24244806167.commit-6559014 → 7.22.4-24516040558.commit-1309a55
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 +18 -151
- package/dist/beta.d.ts +18 -151
- package/dist/index.bundled.d.ts +18 -151
- package/dist/index.js +6 -6
- package/dist/playground/sdk/apis.d.ts +0 -6
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +18 -151
- package/etc/playground-assets.api.json +1469 -2842
- package/etc/playground-assets.api.md +15 -103
- package/package.json +4 -4
- package/dist/index.js.map +0 -8
package/dist/alpha.d.ts
CHANGED
|
@@ -115,61 +115,6 @@ export declare const assetLoadLoadingStateSystem: AssetLoadLoadingStateSystem;
|
|
|
115
115
|
*/
|
|
116
116
|
export declare type AssetLoadLoadingStateSystemCallback = (event: DeepReadonlyObject<PBAssetLoadLoadingState>) => void;
|
|
117
117
|
|
|
118
|
-
export declare const AudioAnalysis: AudioAnalysisComponentDefinitionExtended;
|
|
119
|
-
|
|
120
|
-
export declare interface AudioAnalysisComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBAudioAnalysis> {
|
|
121
|
-
/**
|
|
122
|
-
* Reads the component data of `entity` into the provided `out` view.
|
|
123
|
-
*
|
|
124
|
-
* @throws Error if the entity does not have an AudioAnalysis component.
|
|
125
|
-
* @param entity - The entity whose AudioAnalysis data will be read.
|
|
126
|
-
* @param out - An existing AudioAnalysisView to populate with the latest values.
|
|
127
|
-
*/
|
|
128
|
-
readIntoView(entity: Entity, out: AudioAnalysisView): void;
|
|
129
|
-
/**
|
|
130
|
-
* Attempts to read the component data of `entity` into the provided `out` view.
|
|
131
|
-
*
|
|
132
|
-
* @returns `true` if the component exists and data was written into `out`,
|
|
133
|
-
* `false` if the entity does not have an AudioAnalysis component.
|
|
134
|
-
* @param entity - The entity whose AudioAnalysis data will be read.
|
|
135
|
-
* @param out - An existing AudioAnalysisView to populate.
|
|
136
|
-
*/
|
|
137
|
-
tryReadIntoView(entity: Entity, out: AudioAnalysisView): boolean;
|
|
138
|
-
/**
|
|
139
|
-
* Creates an AudioAnalysis component for the given `entity`.
|
|
140
|
-
*
|
|
141
|
-
* If a component already exists on the entity, this call fails (does not replace).
|
|
142
|
-
*
|
|
143
|
-
* @param entity - The entity to attach the component to.
|
|
144
|
-
* @param mode - Analysis mode. Defaults to `PBAudioAnalysisMode.MODE_LOGARITHMIC`.
|
|
145
|
-
* @param amplitudeGain - Optional amplitude gain multiplier.
|
|
146
|
-
* @param bandsGain - Optional gain multiplier applied to all frequency bands.
|
|
147
|
-
*/
|
|
148
|
-
createAudioAnalysis(entity: Entity, mode?: PBAudioAnalysisMode, // default is PBAudioAnalysisMode.MODE_LOGARITHMIC
|
|
149
|
-
amplitudeGain?: number, bandsGain?: number): void;
|
|
150
|
-
/**
|
|
151
|
-
* Creates the AudioAnalysis component if missing, or replaces the existing one.
|
|
152
|
-
*
|
|
153
|
-
* @param entity - The target entity.
|
|
154
|
-
* @param mode - Analysis mode. Defaults to `PBAudioAnalysisMode.MODE_LOGARITHMIC`.
|
|
155
|
-
* @param amplitudeGain - Optional amplitude gain multiplier.
|
|
156
|
-
* @param bandsGain - Optional gain multiplier applied to the frequency bands.
|
|
157
|
-
*/
|
|
158
|
-
createOrReplaceAudioAnalysis(entity: Entity, mode?: PBAudioAnalysisMode, // default is PBAudioAnalysisMode.MODE_LOGARITHMIC
|
|
159
|
-
amplitudeGain?: number, bandsGain?: number): void;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
/**
|
|
163
|
-
* A read-only JavaScript-friendly view of AudioAnalysis ECS data.
|
|
164
|
-
*
|
|
165
|
-
* `amplitude` represents the aggregated signal strength.
|
|
166
|
-
* `bands` represents the processed frequency bands.
|
|
167
|
-
*/
|
|
168
|
-
export declare type AudioAnalysisView = {
|
|
169
|
-
amplitude: number;
|
|
170
|
-
bands: number[];
|
|
171
|
-
};
|
|
172
|
-
|
|
173
118
|
/** @public */
|
|
174
119
|
export declare const AudioEvent: GrowOnlyValueSetComponentDefinition<PBAudioEvent>;
|
|
175
120
|
|
|
@@ -261,21 +206,9 @@ export declare const AvatarBase: LastWriteWinElementSetComponentDefinition<PBAva
|
|
|
261
206
|
/** @public */
|
|
262
207
|
export declare const AvatarEmoteCommand: GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>;
|
|
263
208
|
|
|
264
|
-
/** Mask for which bones an animation applies to. */
|
|
265
|
-
/**
|
|
266
|
-
* @public
|
|
267
|
-
*/
|
|
268
|
-
export declare const enum AvatarEmoteMask {
|
|
269
|
-
AEM_FULL_BODY = 0,
|
|
270
|
-
AEM_UPPER_BODY = 1
|
|
271
|
-
}
|
|
272
|
-
|
|
273
209
|
/** @public */
|
|
274
210
|
export declare const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
|
|
275
211
|
|
|
276
|
-
/** @public */
|
|
277
|
-
export declare const AvatarLocomotionSettings: LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>;
|
|
278
|
-
|
|
279
212
|
/** @public */
|
|
280
213
|
export declare const AvatarModifierArea: LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>;
|
|
281
214
|
|
|
@@ -1405,7 +1338,6 @@ export declare const componentDefinitionByName: {
|
|
|
1405
1338
|
"core::Animator": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAnimator>>;
|
|
1406
1339
|
"core::AssetLoad": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAssetLoad>>;
|
|
1407
1340
|
"core::AssetLoadLoadingState": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAssetLoadLoadingState>>;
|
|
1408
|
-
"core::AudioAnalysis": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioAnalysis>>;
|
|
1409
1341
|
"core::AudioEvent": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAudioEvent>>;
|
|
1410
1342
|
"core::AudioSource": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioSource>>;
|
|
1411
1343
|
"core::AudioStream": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioStream>>;
|
|
@@ -1413,7 +1345,6 @@ export declare const componentDefinitionByName: {
|
|
|
1413
1345
|
"core::AvatarBase": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarBase>>;
|
|
1414
1346
|
"core::AvatarEmoteCommand": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>>;
|
|
1415
1347
|
"core::AvatarEquippedData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>>;
|
|
1416
|
-
"core::AvatarLocomotionSettings": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>>;
|
|
1417
1348
|
"core::AvatarModifierArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>>;
|
|
1418
1349
|
"core::AvatarShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarShape>>;
|
|
1419
1350
|
"core::Billboard": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBBillboard>>;
|
|
@@ -2801,8 +2732,7 @@ export declare const enum InputAction {
|
|
|
2801
2732
|
IA_ACTION_3 = 10,
|
|
2802
2733
|
IA_ACTION_4 = 11,
|
|
2803
2734
|
IA_ACTION_5 = 12,
|
|
2804
|
-
IA_ACTION_6 = 13
|
|
2805
|
-
IA_MODIFIER = 14
|
|
2735
|
+
IA_ACTION_6 = 13
|
|
2806
2736
|
}
|
|
2807
2737
|
|
|
2808
2738
|
export declare const InputModifier: InputModifierComponentDefinitionExtended;
|
|
@@ -4594,45 +4524,6 @@ export declare namespace PBAssetLoadLoadingState {
|
|
|
4594
4524
|
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAssetLoadLoadingState;
|
|
4595
4525
|
}
|
|
4596
4526
|
|
|
4597
|
-
/**
|
|
4598
|
-
* @public
|
|
4599
|
-
*/
|
|
4600
|
-
export declare interface PBAudioAnalysis {
|
|
4601
|
-
/** Parameters section */
|
|
4602
|
-
mode: PBAudioAnalysisMode;
|
|
4603
|
-
/** Used only when mode == MODE_LOGARITHMIC */
|
|
4604
|
-
amplitudeGain?: number | undefined;
|
|
4605
|
-
/** End when mode == MODE_LOGARITHMIC */
|
|
4606
|
-
bandsGain?: number | undefined;
|
|
4607
|
-
/** Result section */
|
|
4608
|
-
amplitude: number;
|
|
4609
|
-
/** Protobuf doesn't support fixed arrays -> 8 band fields */
|
|
4610
|
-
band0: number;
|
|
4611
|
-
band1: number;
|
|
4612
|
-
band2: number;
|
|
4613
|
-
band3: number;
|
|
4614
|
-
band4: number;
|
|
4615
|
-
band5: number;
|
|
4616
|
-
band6: number;
|
|
4617
|
-
band7: number;
|
|
4618
|
-
}
|
|
4619
|
-
|
|
4620
|
-
/**
|
|
4621
|
-
* @public
|
|
4622
|
-
*/
|
|
4623
|
-
export declare namespace PBAudioAnalysis {
|
|
4624
|
-
export function encode(message: PBAudioAnalysis, writer?: _m0.Writer): _m0.Writer;
|
|
4625
|
-
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAudioAnalysis;
|
|
4626
|
-
}
|
|
4627
|
-
|
|
4628
|
-
/**
|
|
4629
|
-
* @public
|
|
4630
|
-
*/
|
|
4631
|
-
export declare const enum PBAudioAnalysisMode {
|
|
4632
|
-
MODE_RAW = 0,
|
|
4633
|
-
MODE_LOGARITHMIC = 1
|
|
4634
|
-
}
|
|
4635
|
-
|
|
4636
4527
|
/**
|
|
4637
4528
|
* @public
|
|
4638
4529
|
*/
|
|
@@ -4822,42 +4713,6 @@ export declare namespace PBAvatarEquippedData {
|
|
|
4822
4713
|
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarEquippedData;
|
|
4823
4714
|
}
|
|
4824
4715
|
|
|
4825
|
-
/**
|
|
4826
|
-
* The PBAvatarLocomotionSettings component allows scenes to modify locomotion settings defining things such
|
|
4827
|
-
* as the avatar movement speed, jump height etc.
|
|
4828
|
-
*/
|
|
4829
|
-
/**
|
|
4830
|
-
* @public
|
|
4831
|
-
*/
|
|
4832
|
-
export declare interface PBAvatarLocomotionSettings {
|
|
4833
|
-
/** Maximum speed when walking (in meters per second) */
|
|
4834
|
-
walkSpeed?: number | undefined;
|
|
4835
|
-
/** Maximum speed when jogging (in meters per second) */
|
|
4836
|
-
jogSpeed?: number | undefined;
|
|
4837
|
-
/** Maximum speed when running (in meters per second) */
|
|
4838
|
-
runSpeed?: number | undefined;
|
|
4839
|
-
/** Height of a regular jump (in meters) */
|
|
4840
|
-
jumpHeight?: number | undefined;
|
|
4841
|
-
/** Height of a jump while running (in meters) */
|
|
4842
|
-
runJumpHeight?: number | undefined;
|
|
4843
|
-
/** Cooldown time after a hard landing before the avatar can move again (in seconds) */
|
|
4844
|
-
hardLandingCooldown?: number | undefined;
|
|
4845
|
-
/** Height of the double jump (in meters) */
|
|
4846
|
-
doubleJumpHeight?: number | undefined;
|
|
4847
|
-
/** Maximum speed when gliding (in meters per second) */
|
|
4848
|
-
glidingSpeed?: number | undefined;
|
|
4849
|
-
/** Maximum falling speed when gliding (in meters per second) */
|
|
4850
|
-
glidingFallingSpeed?: number | undefined;
|
|
4851
|
-
}
|
|
4852
|
-
|
|
4853
|
-
/**
|
|
4854
|
-
* @public
|
|
4855
|
-
*/
|
|
4856
|
-
export declare namespace PBAvatarLocomotionSettings {
|
|
4857
|
-
export function encode(message: PBAvatarLocomotionSettings, writer?: _m0.Writer): _m0.Writer;
|
|
4858
|
-
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarLocomotionSettings;
|
|
4859
|
-
}
|
|
4860
|
-
|
|
4861
4716
|
/**
|
|
4862
4717
|
* The AvatarModifierArea component can be attached to an Entity to define a region of space where
|
|
4863
4718
|
* avatar behavior changes.
|
|
@@ -5692,7 +5547,7 @@ export declare interface PBParticleSystem {
|
|
|
5692
5547
|
/** --- Playback --- */
|
|
5693
5548
|
playbackState?: PBParticleSystem_PlaybackState | undefined;
|
|
5694
5549
|
/** --- Emission Bursts --- */
|
|
5695
|
-
bursts
|
|
5550
|
+
bursts?: PBParticleSystem_BurstConfiguration | undefined;
|
|
5696
5551
|
}
|
|
5697
5552
|
|
|
5698
5553
|
/**
|
|
@@ -5734,7 +5589,6 @@ export declare namespace PBParticleSystem_Box {
|
|
|
5734
5589
|
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Box;
|
|
5735
5590
|
}
|
|
5736
5591
|
|
|
5737
|
-
/** Emission burst configuration. */
|
|
5738
5592
|
/**
|
|
5739
5593
|
* @public
|
|
5740
5594
|
*/
|
|
@@ -5759,6 +5613,22 @@ export declare namespace PBParticleSystem_Burst {
|
|
|
5759
5613
|
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Burst;
|
|
5760
5614
|
}
|
|
5761
5615
|
|
|
5616
|
+
/** Emission burst configuration. */
|
|
5617
|
+
/**
|
|
5618
|
+
* @public
|
|
5619
|
+
*/
|
|
5620
|
+
export declare interface PBParticleSystem_BurstConfiguration {
|
|
5621
|
+
values: PBParticleSystem_Burst[];
|
|
5622
|
+
}
|
|
5623
|
+
|
|
5624
|
+
/**
|
|
5625
|
+
* @public
|
|
5626
|
+
*/
|
|
5627
|
+
export declare namespace PBParticleSystem_BurstConfiguration {
|
|
5628
|
+
export function encode(message: PBParticleSystem_BurstConfiguration, writer?: _m0.Writer): _m0.Writer;
|
|
5629
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_BurstConfiguration;
|
|
5630
|
+
}
|
|
5631
|
+
|
|
5762
5632
|
/** Emitter spawns particles from the base of a cone and projects them outward. */
|
|
5763
5633
|
/**
|
|
5764
5634
|
* @public
|
|
@@ -6917,7 +6787,6 @@ export declare namespace PBVideoPlayer {
|
|
|
6917
6787
|
* an 'instant' transition (like using speed/time = 0)
|
|
6918
6788
|
* * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
|
|
6919
6789
|
* the holding entity transform).
|
|
6920
|
-
* * The fov defines the Field of View of the virtual camera
|
|
6921
6790
|
*/
|
|
6922
6791
|
/**
|
|
6923
6792
|
* @public
|
|
@@ -6925,8 +6794,6 @@ export declare namespace PBVideoPlayer {
|
|
|
6925
6794
|
export declare interface PBVirtualCamera {
|
|
6926
6795
|
defaultTransition?: CameraTransition | undefined;
|
|
6927
6796
|
lookAtEntity?: number | undefined;
|
|
6928
|
-
/** default: 60 */
|
|
6929
|
-
fov?: number | undefined;
|
|
6930
6797
|
}
|
|
6931
6798
|
|
|
6932
6799
|
/**
|
package/dist/beta.d.ts
CHANGED
|
@@ -115,61 +115,6 @@ export declare const assetLoadLoadingStateSystem: AssetLoadLoadingStateSystem;
|
|
|
115
115
|
*/
|
|
116
116
|
export declare type AssetLoadLoadingStateSystemCallback = (event: DeepReadonlyObject<PBAssetLoadLoadingState>) => void;
|
|
117
117
|
|
|
118
|
-
export declare const AudioAnalysis: AudioAnalysisComponentDefinitionExtended;
|
|
119
|
-
|
|
120
|
-
export declare interface AudioAnalysisComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBAudioAnalysis> {
|
|
121
|
-
/**
|
|
122
|
-
* Reads the component data of `entity` into the provided `out` view.
|
|
123
|
-
*
|
|
124
|
-
* @throws Error if the entity does not have an AudioAnalysis component.
|
|
125
|
-
* @param entity - The entity whose AudioAnalysis data will be read.
|
|
126
|
-
* @param out - An existing AudioAnalysisView to populate with the latest values.
|
|
127
|
-
*/
|
|
128
|
-
readIntoView(entity: Entity, out: AudioAnalysisView): void;
|
|
129
|
-
/**
|
|
130
|
-
* Attempts to read the component data of `entity` into the provided `out` view.
|
|
131
|
-
*
|
|
132
|
-
* @returns `true` if the component exists and data was written into `out`,
|
|
133
|
-
* `false` if the entity does not have an AudioAnalysis component.
|
|
134
|
-
* @param entity - The entity whose AudioAnalysis data will be read.
|
|
135
|
-
* @param out - An existing AudioAnalysisView to populate.
|
|
136
|
-
*/
|
|
137
|
-
tryReadIntoView(entity: Entity, out: AudioAnalysisView): boolean;
|
|
138
|
-
/**
|
|
139
|
-
* Creates an AudioAnalysis component for the given `entity`.
|
|
140
|
-
*
|
|
141
|
-
* If a component already exists on the entity, this call fails (does not replace).
|
|
142
|
-
*
|
|
143
|
-
* @param entity - The entity to attach the component to.
|
|
144
|
-
* @param mode - Analysis mode. Defaults to `PBAudioAnalysisMode.MODE_LOGARITHMIC`.
|
|
145
|
-
* @param amplitudeGain - Optional amplitude gain multiplier.
|
|
146
|
-
* @param bandsGain - Optional gain multiplier applied to all frequency bands.
|
|
147
|
-
*/
|
|
148
|
-
createAudioAnalysis(entity: Entity, mode?: PBAudioAnalysisMode, // default is PBAudioAnalysisMode.MODE_LOGARITHMIC
|
|
149
|
-
amplitudeGain?: number, bandsGain?: number): void;
|
|
150
|
-
/**
|
|
151
|
-
* Creates the AudioAnalysis component if missing, or replaces the existing one.
|
|
152
|
-
*
|
|
153
|
-
* @param entity - The target entity.
|
|
154
|
-
* @param mode - Analysis mode. Defaults to `PBAudioAnalysisMode.MODE_LOGARITHMIC`.
|
|
155
|
-
* @param amplitudeGain - Optional amplitude gain multiplier.
|
|
156
|
-
* @param bandsGain - Optional gain multiplier applied to the frequency bands.
|
|
157
|
-
*/
|
|
158
|
-
createOrReplaceAudioAnalysis(entity: Entity, mode?: PBAudioAnalysisMode, // default is PBAudioAnalysisMode.MODE_LOGARITHMIC
|
|
159
|
-
amplitudeGain?: number, bandsGain?: number): void;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
/**
|
|
163
|
-
* A read-only JavaScript-friendly view of AudioAnalysis ECS data.
|
|
164
|
-
*
|
|
165
|
-
* `amplitude` represents the aggregated signal strength.
|
|
166
|
-
* `bands` represents the processed frequency bands.
|
|
167
|
-
*/
|
|
168
|
-
export declare type AudioAnalysisView = {
|
|
169
|
-
amplitude: number;
|
|
170
|
-
bands: number[];
|
|
171
|
-
};
|
|
172
|
-
|
|
173
118
|
/** @public */
|
|
174
119
|
export declare const AudioEvent: GrowOnlyValueSetComponentDefinition<PBAudioEvent>;
|
|
175
120
|
|
|
@@ -261,21 +206,9 @@ export declare const AvatarBase: LastWriteWinElementSetComponentDefinition<PBAva
|
|
|
261
206
|
/** @public */
|
|
262
207
|
export declare const AvatarEmoteCommand: GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>;
|
|
263
208
|
|
|
264
|
-
/** Mask for which bones an animation applies to. */
|
|
265
|
-
/**
|
|
266
|
-
* @public
|
|
267
|
-
*/
|
|
268
|
-
export declare const enum AvatarEmoteMask {
|
|
269
|
-
AEM_FULL_BODY = 0,
|
|
270
|
-
AEM_UPPER_BODY = 1
|
|
271
|
-
}
|
|
272
|
-
|
|
273
209
|
/** @public */
|
|
274
210
|
export declare const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
|
|
275
211
|
|
|
276
|
-
/** @public */
|
|
277
|
-
export declare const AvatarLocomotionSettings: LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>;
|
|
278
|
-
|
|
279
212
|
/** @public */
|
|
280
213
|
export declare const AvatarModifierArea: LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>;
|
|
281
214
|
|
|
@@ -1405,7 +1338,6 @@ export declare const componentDefinitionByName: {
|
|
|
1405
1338
|
"core::Animator": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAnimator>>;
|
|
1406
1339
|
"core::AssetLoad": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAssetLoad>>;
|
|
1407
1340
|
"core::AssetLoadLoadingState": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAssetLoadLoadingState>>;
|
|
1408
|
-
"core::AudioAnalysis": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioAnalysis>>;
|
|
1409
1341
|
"core::AudioEvent": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAudioEvent>>;
|
|
1410
1342
|
"core::AudioSource": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioSource>>;
|
|
1411
1343
|
"core::AudioStream": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioStream>>;
|
|
@@ -1413,7 +1345,6 @@ export declare const componentDefinitionByName: {
|
|
|
1413
1345
|
"core::AvatarBase": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarBase>>;
|
|
1414
1346
|
"core::AvatarEmoteCommand": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>>;
|
|
1415
1347
|
"core::AvatarEquippedData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>>;
|
|
1416
|
-
"core::AvatarLocomotionSettings": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>>;
|
|
1417
1348
|
"core::AvatarModifierArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>>;
|
|
1418
1349
|
"core::AvatarShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarShape>>;
|
|
1419
1350
|
"core::Billboard": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBBillboard>>;
|
|
@@ -2792,8 +2723,7 @@ export declare const enum InputAction {
|
|
|
2792
2723
|
IA_ACTION_3 = 10,
|
|
2793
2724
|
IA_ACTION_4 = 11,
|
|
2794
2725
|
IA_ACTION_5 = 12,
|
|
2795
|
-
IA_ACTION_6 = 13
|
|
2796
|
-
IA_MODIFIER = 14
|
|
2726
|
+
IA_ACTION_6 = 13
|
|
2797
2727
|
}
|
|
2798
2728
|
|
|
2799
2729
|
export declare const InputModifier: InputModifierComponentDefinitionExtended;
|
|
@@ -4566,45 +4496,6 @@ export declare namespace PBAssetLoadLoadingState {
|
|
|
4566
4496
|
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAssetLoadLoadingState;
|
|
4567
4497
|
}
|
|
4568
4498
|
|
|
4569
|
-
/**
|
|
4570
|
-
* @public
|
|
4571
|
-
*/
|
|
4572
|
-
export declare interface PBAudioAnalysis {
|
|
4573
|
-
/** Parameters section */
|
|
4574
|
-
mode: PBAudioAnalysisMode;
|
|
4575
|
-
/** Used only when mode == MODE_LOGARITHMIC */
|
|
4576
|
-
amplitudeGain?: number | undefined;
|
|
4577
|
-
/** End when mode == MODE_LOGARITHMIC */
|
|
4578
|
-
bandsGain?: number | undefined;
|
|
4579
|
-
/** Result section */
|
|
4580
|
-
amplitude: number;
|
|
4581
|
-
/** Protobuf doesn't support fixed arrays -> 8 band fields */
|
|
4582
|
-
band0: number;
|
|
4583
|
-
band1: number;
|
|
4584
|
-
band2: number;
|
|
4585
|
-
band3: number;
|
|
4586
|
-
band4: number;
|
|
4587
|
-
band5: number;
|
|
4588
|
-
band6: number;
|
|
4589
|
-
band7: number;
|
|
4590
|
-
}
|
|
4591
|
-
|
|
4592
|
-
/**
|
|
4593
|
-
* @public
|
|
4594
|
-
*/
|
|
4595
|
-
export declare namespace PBAudioAnalysis {
|
|
4596
|
-
export function encode(message: PBAudioAnalysis, writer?: _m0.Writer): _m0.Writer;
|
|
4597
|
-
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAudioAnalysis;
|
|
4598
|
-
}
|
|
4599
|
-
|
|
4600
|
-
/**
|
|
4601
|
-
* @public
|
|
4602
|
-
*/
|
|
4603
|
-
export declare const enum PBAudioAnalysisMode {
|
|
4604
|
-
MODE_RAW = 0,
|
|
4605
|
-
MODE_LOGARITHMIC = 1
|
|
4606
|
-
}
|
|
4607
|
-
|
|
4608
4499
|
/**
|
|
4609
4500
|
* @public
|
|
4610
4501
|
*/
|
|
@@ -4794,42 +4685,6 @@ export declare namespace PBAvatarEquippedData {
|
|
|
4794
4685
|
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarEquippedData;
|
|
4795
4686
|
}
|
|
4796
4687
|
|
|
4797
|
-
/**
|
|
4798
|
-
* The PBAvatarLocomotionSettings component allows scenes to modify locomotion settings defining things such
|
|
4799
|
-
* as the avatar movement speed, jump height etc.
|
|
4800
|
-
*/
|
|
4801
|
-
/**
|
|
4802
|
-
* @public
|
|
4803
|
-
*/
|
|
4804
|
-
export declare interface PBAvatarLocomotionSettings {
|
|
4805
|
-
/** Maximum speed when walking (in meters per second) */
|
|
4806
|
-
walkSpeed?: number | undefined;
|
|
4807
|
-
/** Maximum speed when jogging (in meters per second) */
|
|
4808
|
-
jogSpeed?: number | undefined;
|
|
4809
|
-
/** Maximum speed when running (in meters per second) */
|
|
4810
|
-
runSpeed?: number | undefined;
|
|
4811
|
-
/** Height of a regular jump (in meters) */
|
|
4812
|
-
jumpHeight?: number | undefined;
|
|
4813
|
-
/** Height of a jump while running (in meters) */
|
|
4814
|
-
runJumpHeight?: number | undefined;
|
|
4815
|
-
/** Cooldown time after a hard landing before the avatar can move again (in seconds) */
|
|
4816
|
-
hardLandingCooldown?: number | undefined;
|
|
4817
|
-
/** Height of the double jump (in meters) */
|
|
4818
|
-
doubleJumpHeight?: number | undefined;
|
|
4819
|
-
/** Maximum speed when gliding (in meters per second) */
|
|
4820
|
-
glidingSpeed?: number | undefined;
|
|
4821
|
-
/** Maximum falling speed when gliding (in meters per second) */
|
|
4822
|
-
glidingFallingSpeed?: number | undefined;
|
|
4823
|
-
}
|
|
4824
|
-
|
|
4825
|
-
/**
|
|
4826
|
-
* @public
|
|
4827
|
-
*/
|
|
4828
|
-
export declare namespace PBAvatarLocomotionSettings {
|
|
4829
|
-
export function encode(message: PBAvatarLocomotionSettings, writer?: _m0.Writer): _m0.Writer;
|
|
4830
|
-
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarLocomotionSettings;
|
|
4831
|
-
}
|
|
4832
|
-
|
|
4833
4688
|
/**
|
|
4834
4689
|
* The AvatarModifierArea component can be attached to an Entity to define a region of space where
|
|
4835
4690
|
* avatar behavior changes.
|
|
@@ -5664,7 +5519,7 @@ export declare interface PBParticleSystem {
|
|
|
5664
5519
|
/** --- Playback --- */
|
|
5665
5520
|
playbackState?: PBParticleSystem_PlaybackState | undefined;
|
|
5666
5521
|
/** --- Emission Bursts --- */
|
|
5667
|
-
bursts
|
|
5522
|
+
bursts?: PBParticleSystem_BurstConfiguration | undefined;
|
|
5668
5523
|
}
|
|
5669
5524
|
|
|
5670
5525
|
/**
|
|
@@ -5706,7 +5561,6 @@ export declare namespace PBParticleSystem_Box {
|
|
|
5706
5561
|
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Box;
|
|
5707
5562
|
}
|
|
5708
5563
|
|
|
5709
|
-
/** Emission burst configuration. */
|
|
5710
5564
|
/**
|
|
5711
5565
|
* @public
|
|
5712
5566
|
*/
|
|
@@ -5731,6 +5585,22 @@ export declare namespace PBParticleSystem_Burst {
|
|
|
5731
5585
|
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Burst;
|
|
5732
5586
|
}
|
|
5733
5587
|
|
|
5588
|
+
/** Emission burst configuration. */
|
|
5589
|
+
/**
|
|
5590
|
+
* @public
|
|
5591
|
+
*/
|
|
5592
|
+
export declare interface PBParticleSystem_BurstConfiguration {
|
|
5593
|
+
values: PBParticleSystem_Burst[];
|
|
5594
|
+
}
|
|
5595
|
+
|
|
5596
|
+
/**
|
|
5597
|
+
* @public
|
|
5598
|
+
*/
|
|
5599
|
+
export declare namespace PBParticleSystem_BurstConfiguration {
|
|
5600
|
+
export function encode(message: PBParticleSystem_BurstConfiguration, writer?: _m0.Writer): _m0.Writer;
|
|
5601
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_BurstConfiguration;
|
|
5602
|
+
}
|
|
5603
|
+
|
|
5734
5604
|
/** Emitter spawns particles from the base of a cone and projects them outward. */
|
|
5735
5605
|
/**
|
|
5736
5606
|
* @public
|
|
@@ -6889,7 +6759,6 @@ export declare namespace PBVideoPlayer {
|
|
|
6889
6759
|
* an 'instant' transition (like using speed/time = 0)
|
|
6890
6760
|
* * The lookAtEntity defines to which entity the Camera has to look at constantly (independent from
|
|
6891
6761
|
* the holding entity transform).
|
|
6892
|
-
* * The fov defines the Field of View of the virtual camera
|
|
6893
6762
|
*/
|
|
6894
6763
|
/**
|
|
6895
6764
|
* @public
|
|
@@ -6897,8 +6766,6 @@ export declare namespace PBVideoPlayer {
|
|
|
6897
6766
|
export declare interface PBVirtualCamera {
|
|
6898
6767
|
defaultTransition?: CameraTransition | undefined;
|
|
6899
6768
|
lookAtEntity?: number | undefined;
|
|
6900
|
-
/** default: 60 */
|
|
6901
|
-
fov?: number | undefined;
|
|
6902
6769
|
}
|
|
6903
6770
|
|
|
6904
6771
|
/**
|