@dcl/playground-assets 7.24.5-28985208893.commit-8caf648 → 7.24.5-29245621744.commit-336df45

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.
@@ -70,31 +70,6 @@ export const assetLoadLoadingStateSystem: AssetLoadLoadingStateSystem;
70
70
  // @public (undocumented)
71
71
  export type AssetLoadLoadingStateSystemCallback = (event: DeepReadonlyObject<PBAssetLoadLoadingState>) => void;
72
72
 
73
- // Warning: (ae-missing-release-tag) "AudioAnalysis" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
74
- //
75
- // @public (undocumented)
76
- export const AudioAnalysis: AudioAnalysisComponentDefinitionExtended;
77
-
78
- // Warning: (ae-missing-release-tag) "AudioAnalysisComponentDefinitionExtended" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
79
- //
80
- // @public (undocumented)
81
- export interface AudioAnalysisComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBAudioAnalysis> {
82
- createAudioAnalysis(entity: Entity, mode?: PBAudioAnalysisMode, // default is PBAudioAnalysisMode.MODE_LOGARITHMIC
83
- amplitudeGain?: number, bandsGain?: number): void;
84
- createOrReplaceAudioAnalysis(entity: Entity, mode?: PBAudioAnalysisMode, // default is PBAudioAnalysisMode.MODE_LOGARITHMIC
85
- amplitudeGain?: number, bandsGain?: number): void;
86
- readIntoView(entity: Entity, out: AudioAnalysisView): void;
87
- tryReadIntoView(entity: Entity, out: AudioAnalysisView): boolean;
88
- }
89
-
90
- // Warning: (ae-missing-release-tag) "AudioAnalysisView" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
91
- //
92
- // @public
93
- export type AudioAnalysisView = {
94
- amplitude: number;
95
- bands: number[];
96
- };
97
-
98
73
  // @public (undocumented)
99
74
  export const AudioEvent: GrowOnlyValueSetComponentDefinition<PBAudioEvent>;
100
75
 
@@ -181,12 +156,29 @@ export const AvatarAttach: LastWriteWinElementSetComponentDefinition<PBAvatarAtt
181
156
  // @public (undocumented)
182
157
  export const AvatarBase: LastWriteWinElementSetComponentDefinition<PBAvatarBase>;
183
158
 
159
+ // @public (undocumented)
160
+ export const enum AvatarControlType {
161
+ CCT_NONE = 0,
162
+ CCT_RELATIVE = 1,
163
+ CCT_TANK = 2
164
+ }
165
+
184
166
  // @public (undocumented)
185
167
  export const AvatarEmoteCommand: GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>;
186
168
 
187
169
  // @public (undocumented)
188
170
  export const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
189
171
 
172
+ // @public (undocumented)
173
+ export type AvatarEquippedDataComponentDefinitionExtended = LastWriteWinElementSetComponentDefinition<AvatarEquippedDataType>;
174
+
175
+ // Warning: (ae-missing-release-tag) "AvatarEquippedDataType" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
176
+ //
177
+ // @public (undocumented)
178
+ export type AvatarEquippedDataType = Omit<PBAvatarEquippedData, 'forceRender'> & {
179
+ forceRender?: string[] | undefined;
180
+ };
181
+
190
182
  // @public (undocumented)
191
183
  export const AvatarLocomotionSettings: LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>;
192
184
 
@@ -196,13 +188,50 @@ export const AvatarModifierArea: LastWriteWinElementSetComponentDefinition<PBAva
196
188
  // @public (undocumented)
197
189
  export const enum AvatarModifierType {
198
190
  AMT_DISABLE_PASSPORTS = 1,
199
- AMT_HIDE_AVATARS = 0,
200
- AMT_HIDE_NAMETAGS = 2
191
+ AMT_HIDE_AVATARS = 0
192
+ }
193
+
194
+ // @public (undocumented)
195
+ export const AvatarMovement: LastWriteWinElementSetComponentDefinition<PBAvatarMovement>;
196
+
197
+ // @public (undocumented)
198
+ export const AvatarMovementInfo: LastWriteWinElementSetComponentDefinition<PBAvatarMovementInfo>;
199
+
200
+ // @public (undocumented)
201
+ export interface AvatarMovementSettings {
202
+ allowWeightedMovement?: boolean | undefined;
203
+ // (undocumented)
204
+ controlMode?: AvatarControlType | undefined;
205
+ friction?: number | undefined;
206
+ gravity?: number | undefined;
207
+ jumpHeight?: number | undefined;
208
+ maxFallSpeed?: number | undefined;
209
+ runSpeed?: number | undefined;
210
+ turnSpeed?: number | undefined;
211
+ walkSpeed?: number | undefined;
212
+ }
213
+
214
+ // @public (undocumented)
215
+ export namespace AvatarMovementSettings {
216
+ // (undocumented)
217
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): AvatarMovementSettings;
218
+ // (undocumented)
219
+ export function encode(message: AvatarMovementSettings, writer?: _m0.Writer): _m0.Writer;
201
220
  }
202
221
 
203
222
  // @public (undocumented)
204
223
  export const AvatarShape: LastWriteWinElementSetComponentDefinition<PBAvatarShape>;
205
224
 
225
+ // @public (undocumented)
226
+ export type AvatarShapeComponentDefinitionExtended = LastWriteWinElementSetComponentDefinition<AvatarShapeType>;
227
+
228
+ // Warning: (ae-missing-release-tag) "AvatarShapeType" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
229
+ //
230
+ // @public (undocumented)
231
+ export type AvatarShapeType = Omit<PBAvatarShape, 'forceRender'> & {
232
+ forceRender?: string[] | undefined;
233
+ };
234
+
206
235
  // @public (undocumented)
207
236
  export interface AvatarTexture {
208
237
  filterMode?: TextureFilterMode | undefined;
@@ -405,9 +434,15 @@ export interface ByteBuffer {
405
434
  writeUtf8String(value: string, writeLength?: boolean): void;
406
435
  }
407
436
 
408
- // @public
437
+ // @public @deprecated
409
438
  export type Callback = () => void;
410
439
 
440
+ // @public (undocumented)
441
+ export const CameraLayer: LastWriteWinElementSetComponentDefinition<PBCameraLayer>;
442
+
443
+ // @public (undocumented)
444
+ export const CameraLayers: LastWriteWinElementSetComponentDefinition<PBCameraLayers>;
445
+
411
446
  // @public (undocumented)
412
447
  export const CameraMode: LastWriteWinElementSetComponentDefinition<PBCameraMode>;
413
448
 
@@ -456,6 +491,29 @@ export const enum CameraType {
456
491
  // @public (undocumented)
457
492
  export type Children = ReactEcs.JSX.ReactNode;
458
493
 
494
+ // @public (undocumented)
495
+ export interface CinematicSettings {
496
+ // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
497
+ // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
498
+ // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
499
+ // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
500
+ allowManualRotation?: boolean | undefined;
501
+ cameraEntity: number;
502
+ pitchRange?: number | undefined;
503
+ rollRange?: number | undefined;
504
+ yawRange?: number | undefined;
505
+ zoomMax?: number | undefined;
506
+ zoomMin?: number | undefined;
507
+ }
508
+
509
+ // @public (undocumented)
510
+ export namespace CinematicSettings {
511
+ // (undocumented)
512
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): CinematicSettings;
513
+ // (undocumented)
514
+ export function encode(message: CinematicSettings, writer?: _m0.Writer): _m0.Writer;
515
+ }
516
+
459
517
  // @public (undocumented)
460
518
  export const enum ColliderLayer {
461
519
  // (undocumented)
@@ -474,12 +532,13 @@ export const enum ColliderLayer {
474
532
  CL_CUSTOM7 = 16384,
475
533
  // (undocumented)
476
534
  CL_CUSTOM8 = 32768,
477
- CL_MAIN_PLAYER = 8,
478
535
  CL_NONE = 0,
479
536
  CL_PHYSICS = 2,
480
537
  CL_PLAYER = 4,
481
538
  CL_POINTER = 1,
482
539
  // (undocumented)
540
+ CL_RESERVED2 = 8,
541
+ // (undocumented)
483
542
  CL_RESERVED3 = 16,
484
543
  // (undocumented)
485
544
  CL_RESERVED4 = 32,
@@ -638,22 +697,6 @@ export type Color4Type = {
638
697
  a: number;
639
698
  };
640
699
 
641
- // @public (undocumented)
642
- export interface ColorRange {
643
- // (undocumented)
644
- end: PBColor4 | undefined;
645
- // (undocumented)
646
- start: PBColor4 | undefined;
647
- }
648
-
649
- // @public (undocumented)
650
- export namespace ColorRange {
651
- // (undocumented)
652
- export function decode(input: _m0.Reader | Uint8Array, length?: number): ColorRange;
653
- // (undocumented)
654
- export function encode(message: ColorRange, writer?: _m0.Writer): _m0.Writer;
655
- }
656
-
657
700
  // @public (undocumented)
658
701
  export interface ComponentData {
659
702
  // (undocumented)
@@ -688,7 +731,6 @@ export const componentDefinitionByName: {
688
731
  "core::Animator": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAnimator>>;
689
732
  "core::AssetLoad": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAssetLoad>>;
690
733
  "core::AssetLoadLoadingState": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAssetLoadLoadingState>>;
691
- "core::AudioAnalysis": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioAnalysis>>;
692
734
  "core::AudioEvent": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAudioEvent>>;
693
735
  "core::AudioSource": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioSource>>;
694
736
  "core::AudioStream": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioStream>>;
@@ -698,14 +740,21 @@ export const componentDefinitionByName: {
698
740
  "core::AvatarEquippedData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>>;
699
741
  "core::AvatarLocomotionSettings": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>>;
700
742
  "core::AvatarModifierArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>>;
743
+ "core::AvatarMovement": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarMovement>>;
744
+ "core::AvatarMovementInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarMovementInfo>>;
701
745
  "core::AvatarShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarShape>>;
702
746
  "core::Billboard": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBBillboard>>;
747
+ "core::CameraLayer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraLayer>>;
748
+ "core::CameraLayers": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraLayers>>;
703
749
  "core::CameraMode": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraMode>>;
704
750
  "core::CameraModeArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraModeArea>>;
705
751
  "core::EngineInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBEngineInfo>>;
752
+ "core::GlobalLight": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGlobalLight>>;
706
753
  "core::GltfContainer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainer>>;
707
754
  "core::GltfContainerLoadingState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>>;
755
+ "core::GltfNode": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNode>>;
708
756
  "core::GltfNodeModifiers": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNodeModifiers>>;
757
+ "core::GltfNodeState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNodeState>>;
709
758
  "core::InputModifier": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBInputModifier>>;
710
759
  "core::LightSource": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBLightSource>>;
711
760
  "core::MainCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMainCamera>>;
@@ -713,9 +762,6 @@ export const componentDefinitionByName: {
713
762
  "core::MeshCollider": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshCollider>>;
714
763
  "core::MeshRenderer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshRenderer>>;
715
764
  "core::NftShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBNftShape>>;
716
- "core::ParticleSystem": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBParticleSystem>>;
717
- "core::PhysicsCombinedForce": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPhysicsCombinedForce>>;
718
- "core::PhysicsCombinedImpulse": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPhysicsCombinedImpulse>>;
719
765
  "core::PlayerIdentityData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPlayerIdentityData>>;
720
766
  "core::PointerEvents": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPointerEvents>>;
721
767
  "core::PointerEventsResult": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBPointerEventsResult>>;
@@ -726,17 +772,20 @@ export const componentDefinitionByName: {
726
772
  "core::RealmInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRealmInfo>>;
727
773
  "core::SkyboxTime": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBSkyboxTime>>;
728
774
  "core::TextShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTextShape>>;
775
+ "core::TextureCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTextureCamera>>;
729
776
  "core::TriggerArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTriggerArea>>;
730
777
  "core::TriggerAreaResult": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBTriggerAreaResult>>;
731
778
  "core::Tween": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTween>>;
732
779
  "core::TweenSequence": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTweenSequence>>;
733
780
  "core::TweenState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTweenState>>;
734
781
  "core::UiBackground": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiBackground>>;
782
+ "core::UiCanvas": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiCanvas>>;
735
783
  "core::UiCanvasInformation": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiCanvasInformation>>;
736
784
  "core::UiDropdown": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiDropdown>>;
737
785
  "core::UiDropdownResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiDropdownResult>>;
738
786
  "core::UiInput": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiInput>>;
739
787
  "core::UiInputResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiInputResult>>;
788
+ "core::UiScrollResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiScrollResult>>;
740
789
  "core::UiText": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiText>>;
741
790
  "core::UiTransform": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiTransform>>;
742
791
  "core::VideoEvent": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBVideoEvent>>;
@@ -764,7 +813,7 @@ export namespace Composite {
764
813
  export function fromBinary(buffer: Uint8Array): Composite.Definition;
765
814
  // (undocumented)
766
815
  export function fromJson(object: any): Composite.Definition;
767
- export function instance(engine: IEngine, compositeData: Composite.Resource, compositeProvider: CompositeProvider, options?: InstanceCompositeOptions): Entity;
816
+ export function instance(engine: IEngine, compositeData: Composite.Resource, compositeProvider: CompositeProvider, options?: InstanceCompositeOptions): void;
768
817
  // (undocumented)
769
818
  export type Provider = CompositeProvider;
770
819
  export function resolveAndNormalizePath(src: string, cwd?: string): string;
@@ -841,11 +890,6 @@ export namespace CompositeDefinition {
841
890
  // @public (undocumented)
842
891
  export type CompositeProvider = {
843
892
  getCompositeOrNull(src: string): CompositeResource | null;
844
- loadComposite?: (src: string) => Promise<CompositeResource>;
845
- schemas?: Iterable<{
846
- name: string;
847
- jsonSchema: any;
848
- }>;
849
893
  };
850
894
 
851
895
  // @public (undocumented)
@@ -1179,10 +1223,18 @@ export type EntityComponents = {
1179
1223
  uiBackground: PBUiBackground;
1180
1224
  uiInput: PBUiInput;
1181
1225
  uiDropdown: PBUiDropdown;
1182
- onMouseDown: Callback;
1183
- onMouseUp: Callback;
1184
- onMouseEnter: Callback;
1185
- onMouseLeave: Callback;
1226
+ onMouseDown: EventSystemCallback;
1227
+ onMouseUp: EventSystemCallback;
1228
+ onMouseEnter: EventSystemCallback;
1229
+ onMouseLeave: EventSystemCallback;
1230
+ onMouseDrag: EventSystemCallback;
1231
+ onMouseDragLocked: EventSystemCallback;
1232
+ onMouseDragEnd: EventSystemCallback;
1233
+ onInputDown: MultiCallback;
1234
+ onInputUp: MultiCallback;
1235
+ onInputDrag: MultiCallback;
1236
+ onInputDragLocked: MultiCallback;
1237
+ onInputDragEnd: MultiCallback;
1186
1238
  };
1187
1239
 
1188
1240
  // @public (undocumented)
@@ -1233,7 +1285,11 @@ export type EventSystemOptions = {
1233
1285
  showFeedback?: boolean;
1234
1286
  showHighlight?: boolean;
1235
1287
  maxPlayerDistance?: number;
1236
- priority?: number;
1288
+ };
1289
+
1290
+ // @public (undocumented)
1291
+ export type EventSystemOptionsCallback = EventSystemOptions & {
1292
+ cb: EventSystemCallback;
1237
1293
  };
1238
1294
 
1239
1295
  // @public
@@ -1280,22 +1336,6 @@ export type FlexWrapType = 'wrap' | 'nowrap' | 'wrap-reverse';
1280
1336
  // @public (undocumented)
1281
1337
  export type FloatArray = number[];
1282
1338
 
1283
- // @public (undocumented)
1284
- export interface FloatRange {
1285
- // (undocumented)
1286
- end: number;
1287
- // (undocumented)
1288
- start: number;
1289
- }
1290
-
1291
- // @public (undocumented)
1292
- export namespace FloatRange {
1293
- // (undocumented)
1294
- export function decode(input: _m0.Reader | Uint8Array, length?: number): FloatRange;
1295
- // (undocumented)
1296
- export function encode(message: FloatRange, writer?: _m0.Writer): _m0.Writer;
1297
- }
1298
-
1299
1339
  // @public (undocumented)
1300
1340
  export const enum Font {
1301
1341
  // (undocumented)
@@ -1311,9 +1351,6 @@ export function getComponentEntityTree<T>(engine: Pick<IEngine, 'getEntitiesWith
1311
1351
  parent?: Entity;
1312
1352
  }>): Generator<Entity>;
1313
1353
 
1314
- // @public
1315
- export function getCompositeProvider(): CompositeProvider | null;
1316
-
1317
1354
  // @public @deprecated (undocumented)
1318
1355
  export function getCompositeRootComponent(engine: IEngine): LastWriteWinElementSetComponentDefinition<CompositeRootType>;
1319
1356
 
@@ -1346,6 +1383,9 @@ export type GlobalDirectionRaycastSystemOptions = {
1346
1383
  direction?: PBVector3;
1347
1384
  };
1348
1385
 
1386
+ // @public (undocumented)
1387
+ export const GlobalLight: LastWriteWinElementSetComponentDefinition<PBGlobalLight>;
1388
+
1349
1389
  // Warning: (ae-missing-release-tag) "GlobalTargetRaycastOptions" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
1350
1390
  //
1351
1391
  // @public (undocumented)
@@ -1364,9 +1404,25 @@ export const GltfContainer: LastWriteWinElementSetComponentDefinition<PBGltfCont
1364
1404
  // @public (undocumented)
1365
1405
  export const GltfContainerLoadingState: LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>;
1366
1406
 
1407
+ // @public (undocumented)
1408
+ export const GltfNode: LastWriteWinElementSetComponentDefinition<PBGltfNode>;
1409
+
1367
1410
  // @public (undocumented)
1368
1411
  export const GltfNodeModifiers: LastWriteWinElementSetComponentDefinition<PBGltfNodeModifiers>;
1369
1412
 
1413
+ // @public (undocumented)
1414
+ export const GltfNodeState: LastWriteWinElementSetComponentDefinition<PBGltfNodeState>;
1415
+
1416
+ // @public (undocumented)
1417
+ export const enum GltfNodeStateValue {
1418
+ // (undocumented)
1419
+ GNSV_FAILED = 1,
1420
+ // (undocumented)
1421
+ GNSV_PENDING = 0,
1422
+ // (undocumented)
1423
+ GNSV_READY = 2
1424
+ }
1425
+
1370
1426
  // @public (undocumented)
1371
1427
  export interface GrowOnlyValueSetComponentDefinition<T> extends BaseComponent<T> {
1372
1428
  addValue(entity: Entity, val: DeepReadonly<T>): DeepReadonlySet<T>;
@@ -1491,6 +1547,7 @@ export type IInputSystem = {
1491
1547
  isTriggered: (inputAction: InputAction, pointerEventType: PointerEventType, entity?: Entity) => boolean;
1492
1548
  isPressed: (inputAction: InputAction) => boolean;
1493
1549
  getInputCommand: (inputAction: InputAction, pointerEventType: PointerEventType, entity?: Entity) => PBPointerEventsResult | null;
1550
+ getInputCommands: () => Generator<PBPointerEventsResult>;
1494
1551
  };
1495
1552
 
1496
1553
  // @public
@@ -1575,7 +1632,6 @@ export const enum InputAction {
1575
1632
  IA_JUMP = 8,
1576
1633
  // (undocumented)
1577
1634
  IA_LEFT = 7,
1578
- IA_MODIFIER = 14,
1579
1635
  // (undocumented)
1580
1636
  IA_POINTER = 0,
1581
1637
  // (undocumented)
@@ -1620,19 +1676,6 @@ export type InstanceCompositeOptions = {
1620
1676
  alreadyRequestedSrc?: Set<string>;
1621
1677
  };
1622
1678
 
1623
- // Warning: (tsdoc-undefined-tag) The TSDoc tag "@category" is not defined in this configuration
1624
- //
1625
- // @public
1626
- export function InteractableArea(props: UiInteractableAreaProps): ReactEcs.JSX.Element;
1627
-
1628
- // @public (undocumented)
1629
- export const enum InteractionType {
1630
- // (undocumented)
1631
- CURSOR = 0,
1632
- // (undocumented)
1633
- PROXIMITY = 1
1634
- }
1635
-
1636
1679
  // @public (undocumented)
1637
1680
  export interface ISchema<T = any> {
1638
1681
  // (undocumented)
@@ -1707,13 +1750,6 @@ export type JustifyType = 'flex-start' | 'center' | 'flex-end' | 'space-between'
1707
1750
  // @public
1708
1751
  export type Key = number | string;
1709
1752
 
1710
- // @public
1711
- export enum KnockbackFalloff {
1712
- CONSTANT = 0,
1713
- INVERSE_SQUARE = 2,
1714
- LINEAR = 1
1715
- }
1716
-
1717
1753
  // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
1718
1754
  // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
1719
1755
  // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
@@ -1761,10 +1797,18 @@ export interface LightSourceHelper {
1761
1797
 
1762
1798
  // @public
1763
1799
  export type Listeners = {
1764
- onMouseDown?: Callback;
1765
- onMouseUp?: Callback;
1766
- onMouseEnter?: Callback;
1767
- onMouseLeave?: Callback;
1800
+ onMouseDown?: EventSystemCallback;
1801
+ onMouseUp?: EventSystemCallback;
1802
+ onMouseEnter?: EventSystemCallback;
1803
+ onMouseLeave?: EventSystemCallback;
1804
+ onMouseDrag?: EventSystemCallback;
1805
+ onMouseDragLocked?: EventSystemCallback;
1806
+ onMouseDragEnd?: EventSystemCallback;
1807
+ onInputDown?: MultiCallback;
1808
+ onInputUp?: MultiCallback;
1809
+ onInputDrag?: MultiCallback;
1810
+ onInputDragLocked?: MultiCallback;
1811
+ onInputDragEnd?: MultiCallback;
1768
1812
  };
1769
1813
 
1770
1814
  // @public (undocumented)
@@ -2008,6 +2052,7 @@ export const MeshCollider: MeshColliderComponentDefinitionExtended;
2008
2052
  export interface MeshColliderComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBMeshCollider> {
2009
2053
  setBox(entity: Entity, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
2010
2054
  setCylinder(entity: Entity, radiusBottom?: number, radiusTop?: number, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
2055
+ setGltfMesh(entity: Entity, source: string, meshName: string, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
2011
2056
  setPlane(entity: Entity, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
2012
2057
  setSphere(entity: Entity, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
2013
2058
  }
@@ -2021,6 +2066,7 @@ export const MeshRenderer: MeshRendererComponentDefinitionExtended;
2021
2066
  export interface MeshRendererComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBMeshRenderer> {
2022
2067
  setBox(entity: Entity, uvs?: number[]): void;
2023
2068
  setCylinder(entity: Entity, radiusBottom?: number, radiusTop?: number): void;
2069
+ setGltfMesh(entity: Entity, source: string, meshName: string): void;
2024
2070
  setPlane(entity: Entity, uvs?: number[]): void;
2025
2071
  setSphere(entity: Entity): void;
2026
2072
  }
@@ -2068,45 +2114,19 @@ export namespace MoveContinuous {
2068
2114
  export function encode(message: MoveContinuous, writer?: _m0.Writer): _m0.Writer;
2069
2115
  }
2070
2116
 
2071
- // @public (undocumented)
2072
- export interface MoveRotateScale {
2073
- // (undocumented)
2074
- positionEnd: PBVector3 | undefined;
2075
- // (undocumented)
2076
- positionStart: PBVector3 | undefined;
2077
- // (undocumented)
2078
- rotationEnd: PBQuaternion | undefined;
2079
- // (undocumented)
2080
- rotationStart: PBQuaternion | undefined;
2081
- // (undocumented)
2082
- scaleEnd: PBVector3 | undefined;
2083
- // (undocumented)
2084
- scaleStart: PBVector3 | undefined;
2085
- }
2086
-
2087
- // @public (undocumented)
2088
- export namespace MoveRotateScale {
2089
- // (undocumented)
2090
- export function decode(input: _m0.Reader | Uint8Array, length?: number): MoveRotateScale;
2091
- // (undocumented)
2092
- export function encode(message: MoveRotateScale, writer?: _m0.Writer): _m0.Writer;
2093
- }
2094
-
2117
+ // Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
2118
+ // Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
2119
+ // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
2120
+ // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
2121
+ // Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
2122
+ // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
2123
+ // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
2124
+ // Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
2125
+ // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
2126
+ // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
2127
+ //
2095
2128
  // @public
2096
- export interface MoveRotateScaleModeParams {
2097
- position?: {
2098
- start: PBVector3;
2099
- end: PBVector3;
2100
- };
2101
- rotation?: {
2102
- start: PBQuaternion;
2103
- end: PBQuaternion;
2104
- };
2105
- scale?: {
2106
- start: PBVector3;
2107
- end: PBVector3;
2108
- };
2109
- }
2129
+ export type MultiCallback = Partial<Record<InputAction, EventSystemCallback>>;
2110
2130
 
2111
2131
  // Warning: (ae-missing-release-tag) "Name" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
2112
2132
  //
@@ -2314,27 +2334,22 @@ export const onVideoEvent: Observable<{
2314
2334
  totalVideoLength: number;
2315
2335
  }>;
2316
2336
 
2317
- // @public
2318
- export type OverflowType = 'hidden' | 'scroll' | 'visible';
2319
-
2320
- // Warning: (ae-missing-release-tag) "ParticleSystem" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
2321
- //
2322
- // @public (undocumented)
2323
- export const ParticleSystem: ParticleSystemComponentDefinitionExtended;
2324
-
2325
2337
  // @public (undocumented)
2326
- export interface ParticleSystemComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBParticleSystem> {
2327
- Shape: ParticleSystemHelper;
2338
+ export interface Orthographic {
2339
+ verticalRange?: number | undefined;
2328
2340
  }
2329
2341
 
2330
2342
  // @public (undocumented)
2331
- export interface ParticleSystemHelper {
2332
- Box: (box?: PBParticleSystem_Box) => PBParticleSystem['shape'];
2333
- Cone: (cone?: PBParticleSystem_Cone) => PBParticleSystem['shape'];
2334
- Point: (point?: PBParticleSystem_Point) => PBParticleSystem['shape'];
2335
- Sphere: (sphere?: PBParticleSystem_Sphere) => PBParticleSystem['shape'];
2343
+ export namespace Orthographic {
2344
+ // (undocumented)
2345
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): Orthographic;
2346
+ // (undocumented)
2347
+ export function encode(message: Orthographic, writer?: _m0.Writer): _m0.Writer;
2336
2348
  }
2337
2349
 
2350
+ // @public
2351
+ export type OverflowType = 'hidden' | 'scroll' | 'visible';
2352
+
2338
2353
  // @public (undocumented)
2339
2354
  export interface PBAnimationState {
2340
2355
  clip: string;
@@ -2395,46 +2410,6 @@ export namespace PBAssetLoadLoadingState {
2395
2410
  export function encode(message: PBAssetLoadLoadingState, writer?: _m0.Writer): _m0.Writer;
2396
2411
  }
2397
2412
 
2398
- // @public (undocumented)
2399
- export interface PBAudioAnalysis {
2400
- amplitude: number;
2401
- amplitudeGain?: number | undefined;
2402
- // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
2403
- band0: number;
2404
- // (undocumented)
2405
- band1: number;
2406
- // (undocumented)
2407
- band2: number;
2408
- // (undocumented)
2409
- band3: number;
2410
- // (undocumented)
2411
- band4: number;
2412
- // (undocumented)
2413
- band5: number;
2414
- // (undocumented)
2415
- band6: number;
2416
- // (undocumented)
2417
- band7: number;
2418
- bandsGain?: number | undefined;
2419
- mode: PBAudioAnalysisMode;
2420
- }
2421
-
2422
- // @public (undocumented)
2423
- export namespace PBAudioAnalysis {
2424
- // (undocumented)
2425
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAudioAnalysis;
2426
- // (undocumented)
2427
- export function encode(message: PBAudioAnalysis, writer?: _m0.Writer): _m0.Writer;
2428
- }
2429
-
2430
- // @public (undocumented)
2431
- export const enum PBAudioAnalysisMode {
2432
- // (undocumented)
2433
- MODE_LOGARITHMIC = 1,
2434
- // (undocumented)
2435
- MODE_RAW = 0
2436
- }
2437
-
2438
2413
  // @public (undocumented)
2439
2414
  export interface PBAudioEvent {
2440
2415
  // (undocumented)
@@ -2544,6 +2519,7 @@ export namespace PBAvatarEmoteCommand {
2544
2519
  export interface PBAvatarEquippedData {
2545
2520
  // (undocumented)
2546
2521
  emoteUrns: string[];
2522
+ forceRender: string[];
2547
2523
  // (undocumented)
2548
2524
  wearableUrns: string[];
2549
2525
  }
@@ -2558,9 +2534,6 @@ export namespace PBAvatarEquippedData {
2558
2534
 
2559
2535
  // @public (undocumented)
2560
2536
  export interface PBAvatarLocomotionSettings {
2561
- doubleJumpHeight?: number | undefined;
2562
- glidingFallingSpeed?: number | undefined;
2563
- glidingSpeed?: number | undefined;
2564
2537
  hardLandingCooldown?: number | undefined;
2565
2538
  jogSpeed?: number | undefined;
2566
2539
  jumpHeight?: number | undefined;
@@ -2582,6 +2555,9 @@ export interface PBAvatarModifierArea {
2582
2555
  area: PBVector3 | undefined;
2583
2556
  excludeIds: string[];
2584
2557
  modifiers: AvatarModifierType[];
2558
+ // (undocumented)
2559
+ movementSettings?: AvatarMovementSettings | undefined;
2560
+ useColliderRange?: boolean | undefined;
2585
2561
  }
2586
2562
 
2587
2563
  // @public (undocumented)
@@ -2592,6 +2568,40 @@ export namespace PBAvatarModifierArea {
2592
2568
  export function encode(message: PBAvatarModifierArea, writer?: _m0.Writer): _m0.Writer;
2593
2569
  }
2594
2570
 
2571
+ // @public (undocumented)
2572
+ export interface PBAvatarMovement {
2573
+ // (undocumented)
2574
+ groundDirection?: PBVector3 | undefined;
2575
+ orientation: number;
2576
+ // (undocumented)
2577
+ velocity: PBVector3 | undefined;
2578
+ }
2579
+
2580
+ // @public (undocumented)
2581
+ export namespace PBAvatarMovement {
2582
+ // (undocumented)
2583
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarMovement;
2584
+ // (undocumented)
2585
+ export function encode(message: PBAvatarMovement, writer?: _m0.Writer): _m0.Writer;
2586
+ }
2587
+
2588
+ // @public (undocumented)
2589
+ export interface PBAvatarMovementInfo {
2590
+ actualVelocity: PBVector3 | undefined;
2591
+ externalVelocity: PBVector3 | undefined;
2592
+ previousStepTime: number;
2593
+ requestedVelocity: PBVector3 | undefined;
2594
+ stepTime: number;
2595
+ }
2596
+
2597
+ // @public (undocumented)
2598
+ export namespace PBAvatarMovementInfo {
2599
+ // (undocumented)
2600
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarMovementInfo;
2601
+ // (undocumented)
2602
+ export function encode(message: PBAvatarMovementInfo, writer?: _m0.Writer): _m0.Writer;
2603
+ }
2604
+
2595
2605
  // @public (undocumented)
2596
2606
  export interface PBAvatarShape {
2597
2607
  bodyShape?: string | undefined;
@@ -2599,6 +2609,7 @@ export interface PBAvatarShape {
2599
2609
  expressionTriggerId?: string | undefined;
2600
2610
  expressionTriggerTimestamp?: number | undefined;
2601
2611
  eyeColor?: PBColor3 | undefined;
2612
+ forceRender: string[];
2602
2613
  hairColor?: PBColor3 | undefined;
2603
2614
  id: string;
2604
2615
  name?: string | undefined;
@@ -2619,7 +2630,6 @@ export namespace PBAvatarShape {
2619
2630
  // @public (undocumented)
2620
2631
  export interface PBBillboard {
2621
2632
  billboardMode?: BillboardMode | undefined;
2622
- targetEntity?: number | undefined;
2623
2633
  }
2624
2634
 
2625
2635
  // @public (undocumented)
@@ -2630,6 +2640,42 @@ export namespace PBBillboard {
2630
2640
  export function encode(message: PBBillboard, writer?: _m0.Writer): _m0.Writer;
2631
2641
  }
2632
2642
 
2643
+ // @public (undocumented)
2644
+ export interface PBCameraLayer {
2645
+ // (undocumented)
2646
+ ambientBrightnessOverride?: number | undefined;
2647
+ // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
2648
+ ambientColorOverride?: PBColor3 | undefined;
2649
+ directionalLight?: boolean | undefined;
2650
+ // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
2651
+ layer: number;
2652
+ showAvatars?: boolean | undefined;
2653
+ showFog?: boolean | undefined;
2654
+ showSkybox?: boolean | undefined;
2655
+ }
2656
+
2657
+ // @public (undocumented)
2658
+ export namespace PBCameraLayer {
2659
+ // (undocumented)
2660
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBCameraLayer;
2661
+ // (undocumented)
2662
+ export function encode(message: PBCameraLayer, writer?: _m0.Writer): _m0.Writer;
2663
+ }
2664
+
2665
+ // @public (undocumented)
2666
+ export interface PBCameraLayers {
2667
+ // (undocumented)
2668
+ layers: number[];
2669
+ }
2670
+
2671
+ // @public (undocumented)
2672
+ export namespace PBCameraLayers {
2673
+ // (undocumented)
2674
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBCameraLayers;
2675
+ // (undocumented)
2676
+ export function encode(message: PBCameraLayers, writer?: _m0.Writer): _m0.Writer;
2677
+ }
2678
+
2633
2679
  // @public (undocumented)
2634
2680
  export interface PBCameraMode {
2635
2681
  mode: CameraType;
@@ -2646,7 +2692,10 @@ export namespace PBCameraMode {
2646
2692
  // @public (undocumented)
2647
2693
  export interface PBCameraModeArea {
2648
2694
  area: PBVector3 | undefined;
2695
+ // (undocumented)
2696
+ cinematicSettings?: CinematicSettings | undefined;
2649
2697
  mode: CameraType;
2698
+ useColliderRange?: boolean | undefined;
2650
2699
  }
2651
2700
 
2652
2701
  // @public (undocumented)
@@ -2710,6 +2759,21 @@ export namespace PBEngineInfo {
2710
2759
  export function encode(message: PBEngineInfo, writer?: _m0.Writer): _m0.Writer;
2711
2760
  }
2712
2761
 
2762
+ // @public (undocumented)
2763
+ export interface PBGlobalLight {
2764
+ ambientBrightness?: number | undefined;
2765
+ ambientColor?: PBColor3 | undefined;
2766
+ direction?: PBVector3 | undefined;
2767
+ }
2768
+
2769
+ // @public (undocumented)
2770
+ export namespace PBGlobalLight {
2771
+ // (undocumented)
2772
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGlobalLight;
2773
+ // (undocumented)
2774
+ export function encode(message: PBGlobalLight, writer?: _m0.Writer): _m0.Writer;
2775
+ }
2776
+
2713
2777
  // @public (undocumented)
2714
2778
  export interface PBGltfContainer {
2715
2779
  invisibleMeshesCollisionMask?: number | undefined;
@@ -2727,8 +2791,13 @@ export namespace PBGltfContainer {
2727
2791
 
2728
2792
  // @public (undocumented)
2729
2793
  export interface PBGltfContainerLoadingState {
2794
+ animationNames: string[];
2730
2795
  // (undocumented)
2731
2796
  currentState: LoadingState;
2797
+ materialNames: string[];
2798
+ meshNames: string[];
2799
+ nodePaths: string[];
2800
+ skinNames: string[];
2732
2801
  }
2733
2802
 
2734
2803
  // @public (undocumented)
@@ -2739,6 +2808,19 @@ export namespace PBGltfContainerLoadingState {
2739
2808
  export function encode(message: PBGltfContainerLoadingState, writer?: _m0.Writer): _m0.Writer;
2740
2809
  }
2741
2810
 
2811
+ // @public (undocumented)
2812
+ export interface PBGltfNode {
2813
+ path: string;
2814
+ }
2815
+
2816
+ // @public (undocumented)
2817
+ export namespace PBGltfNode {
2818
+ // (undocumented)
2819
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfNode;
2820
+ // (undocumented)
2821
+ export function encode(message: PBGltfNode, writer?: _m0.Writer): _m0.Writer;
2822
+ }
2823
+
2742
2824
  // @public (undocumented)
2743
2825
  export interface PBGltfNodeModifiers {
2744
2826
  // (undocumented)
@@ -2768,6 +2850,22 @@ export namespace PBGltfNodeModifiers_GltfNodeModifier {
2768
2850
  export function encode(message: PBGltfNodeModifiers_GltfNodeModifier, writer?: _m0.Writer): _m0.Writer;
2769
2851
  }
2770
2852
 
2853
+ // @public (undocumented)
2854
+ export interface PBGltfNodeState {
2855
+ // (undocumented)
2856
+ error?: string | undefined;
2857
+ // (undocumented)
2858
+ state: GltfNodeStateValue;
2859
+ }
2860
+
2861
+ // @public (undocumented)
2862
+ export namespace PBGltfNodeState {
2863
+ // (undocumented)
2864
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfNodeState;
2865
+ // (undocumented)
2866
+ export function encode(message: PBGltfNodeState, writer?: _m0.Writer): _m0.Writer;
2867
+ }
2868
+
2771
2869
  // @public (undocumented)
2772
2870
  export interface PBInputModifier {
2773
2871
  // (undocumented)
@@ -2790,12 +2888,8 @@ export interface PBInputModifier_StandardInput {
2790
2888
  // (undocumented)
2791
2889
  disableAll?: boolean | undefined;
2792
2890
  // (undocumented)
2793
- disableDoubleJump?: boolean | undefined;
2794
- // (undocumented)
2795
2891
  disableEmote?: boolean | undefined;
2796
2892
  // (undocumented)
2797
- disableGliding?: boolean | undefined;
2798
- // (undocumented)
2799
2893
  disableJog?: boolean | undefined;
2800
2894
  // (undocumented)
2801
2895
  disableJump?: boolean | undefined;
@@ -2880,6 +2974,7 @@ export namespace PBMainCamera {
2880
2974
 
2881
2975
  // @public (undocumented)
2882
2976
  export interface PBMaterial {
2977
+ gltf?: PBMaterial_GltfMaterial | undefined;
2883
2978
  // (undocumented)
2884
2979
  material?: {
2885
2980
  $case: "unlit";
@@ -2898,6 +2993,22 @@ export namespace PBMaterial {
2898
2993
  export function encode(message: PBMaterial, writer?: _m0.Writer): _m0.Writer;
2899
2994
  }
2900
2995
 
2996
+ // @public (undocumented)
2997
+ export interface PBMaterial_GltfMaterial {
2998
+ // (undocumented)
2999
+ gltfSrc: string;
3000
+ // (undocumented)
3001
+ name: string;
3002
+ }
3003
+
3004
+ // @public (undocumented)
3005
+ export namespace PBMaterial_GltfMaterial {
3006
+ // (undocumented)
3007
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBMaterial_GltfMaterial;
3008
+ // (undocumented)
3009
+ export function encode(message: PBMaterial_GltfMaterial, writer?: _m0.Writer): _m0.Writer;
3010
+ }
3011
+
2901
3012
  // @public (undocumented)
2902
3013
  export interface PBMaterial_PbrMaterial {
2903
3014
  albedoColor?: PBColor4 | undefined;
@@ -2959,6 +3070,9 @@ export interface PBMeshCollider {
2959
3070
  } | {
2960
3071
  $case: "plane";
2961
3072
  plane: PBMeshCollider_PlaneMesh;
3073
+ } | {
3074
+ $case: "gltf";
3075
+ gltf: PBMeshCollider_GltfMesh;
2962
3076
  } | undefined;
2963
3077
  }
2964
3078
 
@@ -2996,6 +3110,20 @@ export namespace PBMeshCollider_CylinderMesh {
2996
3110
  export function encode(message: PBMeshCollider_CylinderMesh, writer?: _m0.Writer): _m0.Writer;
2997
3111
  }
2998
3112
 
3113
+ // @public (undocumented)
3114
+ export interface PBMeshCollider_GltfMesh {
3115
+ gltfSrc: string;
3116
+ name: string;
3117
+ }
3118
+
3119
+ // @public (undocumented)
3120
+ export namespace PBMeshCollider_GltfMesh {
3121
+ // (undocumented)
3122
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBMeshCollider_GltfMesh;
3123
+ // (undocumented)
3124
+ export function encode(message: PBMeshCollider_GltfMesh, writer?: _m0.Writer): _m0.Writer;
3125
+ }
3126
+
2999
3127
  // @public (undocumented)
3000
3128
  export interface PBMeshCollider_PlaneMesh {
3001
3129
  }
@@ -3035,6 +3163,9 @@ export interface PBMeshRenderer {
3035
3163
  } | {
3036
3164
  $case: "plane";
3037
3165
  plane: PBMeshRenderer_PlaneMesh;
3166
+ } | {
3167
+ $case: "gltf";
3168
+ gltf: PBMeshRenderer_GltfMesh;
3038
3169
  } | undefined;
3039
3170
  }
3040
3171
 
@@ -3073,6 +3204,20 @@ export namespace PBMeshRenderer_CylinderMesh {
3073
3204
  export function encode(message: PBMeshRenderer_CylinderMesh, writer?: _m0.Writer): _m0.Writer;
3074
3205
  }
3075
3206
 
3207
+ // @public (undocumented)
3208
+ export interface PBMeshRenderer_GltfMesh {
3209
+ gltfSrc: string;
3210
+ name: string;
3211
+ }
3212
+
3213
+ // @public (undocumented)
3214
+ export namespace PBMeshRenderer_GltfMesh {
3215
+ // (undocumented)
3216
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBMeshRenderer_GltfMesh;
3217
+ // (undocumented)
3218
+ export function encode(message: PBMeshRenderer_GltfMesh, writer?: _m0.Writer): _m0.Writer;
3219
+ }
3220
+
3076
3221
  // @public (undocumented)
3077
3222
  export interface PBMeshRenderer_PlaneMesh {
3078
3223
  uvs: number[];
@@ -3113,225 +3258,6 @@ export namespace PBNftShape {
3113
3258
  export function encode(message: PBNftShape, writer?: _m0.Writer): _m0.Writer;
3114
3259
  }
3115
3260
 
3116
- // @public (undocumented)
3117
- export interface PBParticleSystem {
3118
- active?: boolean | undefined;
3119
- additionalForce?: PBVector3 | undefined;
3120
- billboard?: boolean | undefined;
3121
- blendMode?: PBParticleSystem_BlendMode | undefined;
3122
- bursts?: PBParticleSystem_BurstConfiguration | undefined;
3123
- // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
3124
- // Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
3125
- colorOverTime?: ColorRange | undefined;
3126
- faceTravelDirection?: boolean | undefined;
3127
- gravity?: number | undefined;
3128
- initialColor?: ColorRange | undefined;
3129
- initialRotation?: PBQuaternion | undefined;
3130
- initialSize?: FloatRange | undefined;
3131
- initialVelocitySpeed?: FloatRange | undefined;
3132
- lifetime?: number | undefined;
3133
- limitVelocity?: PBParticleSystem_LimitVelocity | undefined;
3134
- loop?: boolean | undefined;
3135
- maxParticles?: number | undefined;
3136
- playbackState?: PBParticleSystem_PlaybackState | undefined;
3137
- prewarm?: boolean | undefined;
3138
- rate?: number | undefined;
3139
- rotationOverTime?: PBQuaternion | undefined;
3140
- // (undocumented)
3141
- shape?: {
3142
- $case: "point";
3143
- point: PBParticleSystem_Point;
3144
- } | {
3145
- $case: "sphere";
3146
- sphere: PBParticleSystem_Sphere;
3147
- } | {
3148
- $case: "cone";
3149
- cone: PBParticleSystem_Cone;
3150
- } | {
3151
- $case: "box";
3152
- box: PBParticleSystem_Box;
3153
- } | undefined;
3154
- simulationSpace?: PBParticleSystem_SimulationSpace | undefined;
3155
- // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
3156
- // Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
3157
- sizeOverTime?: FloatRange | undefined;
3158
- spriteSheet?: PBParticleSystem_SpriteSheetAnimation | undefined;
3159
- texture?: Texture | undefined;
3160
- }
3161
-
3162
- // @public (undocumented)
3163
- export namespace PBParticleSystem {
3164
- // (undocumented)
3165
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem;
3166
- // (undocumented)
3167
- export function encode(message: PBParticleSystem, writer?: _m0.Writer): _m0.Writer;
3168
- }
3169
-
3170
- // @public (undocumented)
3171
- const enum PBParticleSystem_BlendMode {
3172
- PSB_ADD = 1,
3173
- PSB_ALPHA = 0,
3174
- PSB_MULTIPLY = 2
3175
- }
3176
- export { PBParticleSystem_BlendMode }
3177
- export { PBParticleSystem_BlendMode as ParticleSystemBlendMode }
3178
-
3179
- // @public (undocumented)
3180
- export interface PBParticleSystem_Box {
3181
- // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
3182
- // Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
3183
- size?: PBVector3 | undefined;
3184
- }
3185
-
3186
- // @public (undocumented)
3187
- export namespace PBParticleSystem_Box {
3188
- // (undocumented)
3189
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Box;
3190
- // (undocumented)
3191
- export function encode(message: PBParticleSystem_Box, writer?: _m0.Writer): _m0.Writer;
3192
- }
3193
-
3194
- // @public (undocumented)
3195
- export interface PBParticleSystem_Burst {
3196
- count: number;
3197
- cycles?: number | undefined;
3198
- interval?: number | undefined;
3199
- probability?: number | undefined;
3200
- time: number;
3201
- }
3202
-
3203
- // @public (undocumented)
3204
- export namespace PBParticleSystem_Burst {
3205
- // (undocumented)
3206
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Burst;
3207
- // (undocumented)
3208
- export function encode(message: PBParticleSystem_Burst, writer?: _m0.Writer): _m0.Writer;
3209
- }
3210
-
3211
- // @public (undocumented)
3212
- export interface PBParticleSystem_BurstConfiguration {
3213
- // (undocumented)
3214
- values: PBParticleSystem_Burst[];
3215
- }
3216
-
3217
- // @public (undocumented)
3218
- export namespace PBParticleSystem_BurstConfiguration {
3219
- // (undocumented)
3220
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_BurstConfiguration;
3221
- // (undocumented)
3222
- export function encode(message: PBParticleSystem_BurstConfiguration, writer?: _m0.Writer): _m0.Writer;
3223
- }
3224
-
3225
- // @public (undocumented)
3226
- export interface PBParticleSystem_Cone {
3227
- angle?: number | undefined;
3228
- radius?: number | undefined;
3229
- }
3230
-
3231
- // @public (undocumented)
3232
- export namespace PBParticleSystem_Cone {
3233
- // (undocumented)
3234
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Cone;
3235
- // (undocumented)
3236
- export function encode(message: PBParticleSystem_Cone, writer?: _m0.Writer): _m0.Writer;
3237
- }
3238
-
3239
- // @public (undocumented)
3240
- export interface PBParticleSystem_LimitVelocity {
3241
- dampen?: number | undefined;
3242
- speed: number;
3243
- }
3244
-
3245
- // @public (undocumented)
3246
- export namespace PBParticleSystem_LimitVelocity {
3247
- // (undocumented)
3248
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_LimitVelocity;
3249
- // (undocumented)
3250
- export function encode(message: PBParticleSystem_LimitVelocity, writer?: _m0.Writer): _m0.Writer;
3251
- }
3252
-
3253
- // @public (undocumented)
3254
- const enum PBParticleSystem_PlaybackState {
3255
- PS_PAUSED = 1,
3256
- PS_PLAYING = 0,
3257
- PS_STOPPED = 2
3258
- }
3259
- export { PBParticleSystem_PlaybackState }
3260
- export { PBParticleSystem_PlaybackState as ParticleSystemPlaybackState }
3261
-
3262
- // @public (undocumented)
3263
- export interface PBParticleSystem_Point {
3264
- }
3265
-
3266
- // @public (undocumented)
3267
- export namespace PBParticleSystem_Point {
3268
- // (undocumented)
3269
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Point;
3270
- // (undocumented)
3271
- export function encode(_: PBParticleSystem_Point, writer?: _m0.Writer): _m0.Writer;
3272
- }
3273
-
3274
- // @public (undocumented)
3275
- export const enum PBParticleSystem_SimulationSpace {
3276
- PSS_LOCAL = 0,
3277
- PSS_WORLD = 1
3278
- }
3279
-
3280
- // @public (undocumented)
3281
- export interface PBParticleSystem_Sphere {
3282
- radius?: number | undefined;
3283
- }
3284
-
3285
- // @public (undocumented)
3286
- export namespace PBParticleSystem_Sphere {
3287
- // (undocumented)
3288
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Sphere;
3289
- // (undocumented)
3290
- export function encode(message: PBParticleSystem_Sphere, writer?: _m0.Writer): _m0.Writer;
3291
- }
3292
-
3293
- // @public (undocumented)
3294
- export interface PBParticleSystem_SpriteSheetAnimation {
3295
- framesPerSecond?: number | undefined;
3296
- tilesX: number;
3297
- tilesY: number;
3298
- }
3299
-
3300
- // @public (undocumented)
3301
- export namespace PBParticleSystem_SpriteSheetAnimation {
3302
- // (undocumented)
3303
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_SpriteSheetAnimation;
3304
- // (undocumented)
3305
- export function encode(message: PBParticleSystem_SpriteSheetAnimation, writer?: _m0.Writer): _m0.Writer;
3306
- }
3307
-
3308
- // @public (undocumented)
3309
- export interface PBPhysicsCombinedForce {
3310
- vector: PBVector3 | undefined;
3311
- }
3312
-
3313
- // @public (undocumented)
3314
- export namespace PBPhysicsCombinedForce {
3315
- // (undocumented)
3316
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBPhysicsCombinedForce;
3317
- // (undocumented)
3318
- export function encode(message: PBPhysicsCombinedForce, writer?: _m0.Writer): _m0.Writer;
3319
- }
3320
-
3321
- // @public (undocumented)
3322
- export interface PBPhysicsCombinedImpulse {
3323
- eventId: number;
3324
- vector: PBVector3 | undefined;
3325
- }
3326
-
3327
- // @public (undocumented)
3328
- export namespace PBPhysicsCombinedImpulse {
3329
- // (undocumented)
3330
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBPhysicsCombinedImpulse;
3331
- // (undocumented)
3332
- export function encode(message: PBPhysicsCombinedImpulse, writer?: _m0.Writer): _m0.Writer;
3333
- }
3334
-
3335
3261
  // @public (undocumented)
3336
3262
  export interface PBPlayerIdentityData {
3337
3263
  address: string;
@@ -3364,7 +3290,6 @@ export namespace PBPointerEvents {
3364
3290
  export interface PBPointerEvents_Entry {
3365
3291
  eventInfo: PBPointerEvents_Info | undefined;
3366
3292
  eventType: PointerEventType;
3367
- interactionType?: InteractionType | undefined;
3368
3293
  }
3369
3294
 
3370
3295
  // @public (undocumented)
@@ -3381,7 +3306,6 @@ export interface PBPointerEvents_Info {
3381
3306
  hoverText?: string | undefined;
3382
3307
  maxDistance?: number | undefined;
3383
3308
  maxPlayerDistance?: number | undefined;
3384
- priority?: number | undefined;
3385
3309
  showFeedback?: boolean | undefined;
3386
3310
  showHighlight?: boolean | undefined;
3387
3311
  }
@@ -3499,9 +3423,11 @@ export interface PBRaycast {
3499
3423
  $case: "targetEntity";
3500
3424
  targetEntity: number;
3501
3425
  } | undefined;
3426
+ includeWorld?: boolean | undefined;
3502
3427
  maxDistance: number;
3503
3428
  originOffset?: PBVector3 | undefined;
3504
3429
  queryType: RaycastQueryType;
3430
+ shape?: RaycastShape | undefined;
3505
3431
  timestamp?: number | undefined;
3506
3432
  }
3507
3433
 
@@ -3596,6 +3522,32 @@ export namespace PBTextShape {
3596
3522
  export function encode(message: PBTextShape, writer?: _m0.Writer): _m0.Writer;
3597
3523
  }
3598
3524
 
3525
+ // @public (undocumented)
3526
+ export interface PBTextureCamera {
3527
+ clearColor?: PBColor4 | undefined;
3528
+ farPlane?: number | undefined;
3529
+ height?: number | undefined;
3530
+ layer?: number | undefined;
3531
+ // (undocumented)
3532
+ mode?: {
3533
+ $case: "perspective";
3534
+ perspective: Perspective;
3535
+ } | {
3536
+ $case: "orthographic";
3537
+ orthographic: Orthographic;
3538
+ } | undefined;
3539
+ volume?: number | undefined;
3540
+ width?: number | undefined;
3541
+ }
3542
+
3543
+ // @public (undocumented)
3544
+ export namespace PBTextureCamera {
3545
+ // (undocumented)
3546
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBTextureCamera;
3547
+ // (undocumented)
3548
+ export function encode(message: PBTextureCamera, writer?: _m0.Writer): _m0.Writer;
3549
+ }
3550
+
3599
3551
  // @public (undocumented)
3600
3552
  export interface PBTriggerArea {
3601
3553
  collisionMask?: number | undefined;
@@ -3674,9 +3626,6 @@ export interface PBTween {
3674
3626
  } | {
3675
3627
  $case: "textureMoveContinuous";
3676
3628
  textureMoveContinuous: TextureMoveContinuous;
3677
- } | {
3678
- $case: "moveRotateScale";
3679
- moveRotateScale: MoveRotateScale;
3680
3629
  } | undefined;
3681
3630
  playing?: boolean | undefined;
3682
3631
  }
@@ -3739,12 +3688,28 @@ export namespace PBUiBackground {
3739
3688
  export function encode(message: PBUiBackground, writer?: _m0.Writer): _m0.Writer;
3740
3689
  }
3741
3690
 
3691
+ // @public (undocumented)
3692
+ export interface PBUiCanvas {
3693
+ color?: PBColor4 | undefined;
3694
+ // (undocumented)
3695
+ height: number;
3696
+ // (undocumented)
3697
+ width: number;
3698
+ }
3699
+
3700
+ // @public (undocumented)
3701
+ export namespace PBUiCanvas {
3702
+ // (undocumented)
3703
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBUiCanvas;
3704
+ // (undocumented)
3705
+ export function encode(message: PBUiCanvas, writer?: _m0.Writer): _m0.Writer;
3706
+ }
3707
+
3742
3708
  // @public (undocumented)
3743
3709
  export interface PBUiCanvasInformation {
3744
3710
  devicePixelRatio: number;
3745
3711
  height: number;
3746
3712
  interactableArea: BorderRect | undefined;
3747
- screenInsetArea?: BorderRect | undefined;
3748
3713
  width: number;
3749
3714
  }
3750
3715
 
@@ -3833,11 +3798,27 @@ export namespace PBUiInputResult {
3833
3798
  export function encode(message: PBUiInputResult, writer?: _m0.Writer): _m0.Writer;
3834
3799
  }
3835
3800
 
3801
+ // @public (undocumented)
3802
+ export interface PBUiScrollResult {
3803
+ // (undocumented)
3804
+ value: PBVector2 | undefined;
3805
+ }
3806
+
3807
+ // @public (undocumented)
3808
+ export namespace PBUiScrollResult {
3809
+ // (undocumented)
3810
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBUiScrollResult;
3811
+ // (undocumented)
3812
+ export function encode(message: PBUiScrollResult, writer?: _m0.Writer): _m0.Writer;
3813
+ }
3814
+
3836
3815
  // @public (undocumented)
3837
3816
  export interface PBUiText {
3838
3817
  color?: PBColor4 | undefined;
3839
3818
  font?: Font | undefined;
3840
3819
  fontSize?: number | undefined;
3820
+ outlineColor?: PBColor4 | undefined;
3821
+ outlineWidth?: number | undefined;
3841
3822
  textAlign?: TextAlignMode | undefined;
3842
3823
  textWrap?: TextWrap | undefined;
3843
3824
  value: string;
@@ -3888,6 +3869,7 @@ export interface PBUiTransform {
3888
3869
  borderTopWidth?: number | undefined;
3889
3870
  borderTopWidthUnit?: YGUnit | undefined;
3890
3871
  display: YGDisplay;
3872
+ elementId?: string | undefined;
3891
3873
  // (undocumented)
3892
3874
  flexBasis: number;
3893
3875
  flexBasisUnit: YGUnit;
@@ -3956,6 +3938,8 @@ export interface PBUiTransform {
3956
3938
  positionType: YGPositionType;
3957
3939
  // (undocumented)
3958
3940
  rightOf: number;
3941
+ scrollPosition?: ScrollPositionValue | undefined;
3942
+ scrollVisible?: ShowScrollBar | undefined;
3959
3943
  // (undocumented)
3960
3944
  width: number;
3961
3945
  widthUnit: YGUnit;
@@ -4075,29 +4059,17 @@ export namespace PBVisibilityComponent {
4075
4059
  export function encode(message: PBVisibilityComponent, writer?: _m0.Writer): _m0.Writer;
4076
4060
  }
4077
4061
 
4078
- // @public
4079
- export const Physics: PhysicsSystem;
4080
-
4081
- // @public (undocumented)
4082
- export const PhysicsCombinedForce: LastWriteWinElementSetComponentDefinition<PBPhysicsCombinedForce>;
4083
-
4084
4062
  // @public (undocumented)
4085
- export const PhysicsCombinedImpulse: LastWriteWinElementSetComponentDefinition<PBPhysicsCombinedImpulse>;
4063
+ export interface Perspective {
4064
+ fieldOfView?: number | undefined;
4065
+ }
4086
4066
 
4087
4067
  // @public (undocumented)
4088
- export interface PhysicsSystem {
4089
- applyForceToPlayer(source: Entity, vector: Vector3Type): void;
4068
+ export namespace Perspective {
4090
4069
  // (undocumented)
4091
- applyForceToPlayer(source: Entity, direction: Vector3Type, magnitude: number): void;
4092
- applyForceToPlayerForDuration(source: Entity, duration: number, vector: Vector3Type): void;
4070
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): Perspective;
4093
4071
  // (undocumented)
4094
- applyForceToPlayerForDuration(source: Entity, duration: number, direction: Vector3Type, magnitude: number): void;
4095
- applyImpulseToPlayer(vector: Vector3Type): void;
4096
- // (undocumented)
4097
- applyImpulseToPlayer(direction: Vector3Type, magnitude: number): void;
4098
- applyKnockbackToPlayer(fromPosition: Vector3Type, magnitude: number, radius?: number, falloff?: KnockbackFalloff): void;
4099
- applyRepulsionForceToPlayer(source: Entity, fromPosition: Vector3Type, magnitude: number, radius?: number, falloff?: KnockbackFalloff): void;
4100
- removeForceFromPlayer(source: Entity): void;
4072
+ export function encode(message: Perspective, writer?: _m0.Writer): _m0.Writer;
4101
4073
  }
4102
4074
 
4103
4075
  // @public
@@ -4145,50 +4117,65 @@ export const PointerEventsResult: GrowOnlyValueSetComponentDefinition<PBPointerE
4145
4117
 
4146
4118
  // @public (undocumented)
4147
4119
  export interface PointerEventsSystem {
4120
+ onPointerDown(pointerData: {
4121
+ entity: Entity;
4122
+ optsList: EventSystemOptionsCallback[];
4123
+ }): void;
4148
4124
  onPointerDown(pointerData: {
4149
4125
  entity: Entity;
4150
4126
  opts?: Partial<EventSystemOptions>;
4151
4127
  }, cb: EventSystemCallback): void;
4152
4128
  // @deprecated (undocumented)
4153
4129
  onPointerDown(entity: Entity, cb: EventSystemCallback, opts?: Partial<EventSystemOptions>): void;
4154
- onPointerHoverEnter(pointerData: {
4130
+ onPointerDrag(pointerData: {
4155
4131
  entity: Entity;
4156
- opts?: Partial<EventSystemOptions>;
4157
- }, cb: EventSystemCallback): void;
4158
- onPointerHoverLeave(pointerData: {
4132
+ optsList: EventSystemOptionsCallback[];
4133
+ }): void;
4134
+ onPointerDrag(pointerData: {
4159
4135
  entity: Entity;
4160
4136
  opts?: Partial<EventSystemOptions>;
4161
4137
  }, cb: EventSystemCallback): void;
4162
- onPointerUp(pointerData: {
4138
+ onPointerDragEnd(pointerData: {
4139
+ entity: Entity;
4140
+ optsList: EventSystemOptionsCallback[];
4141
+ }): void;
4142
+ onPointerDragEnd(pointerData: {
4163
4143
  entity: Entity;
4164
4144
  opts?: Partial<EventSystemOptions>;
4165
4145
  }, cb: EventSystemCallback): void;
4166
- // @deprecated (undocumented)
4167
- onPointerUp(entity: Entity, cb: EventSystemCallback, opts?: Partial<EventSystemOptions>): void;
4168
- onProximityDown(pointerData: {
4146
+ onPointerDragLocked(pointerData: {
4147
+ entity: Entity;
4148
+ optsList: EventSystemOptionsCallback[];
4149
+ }): void;
4150
+ onPointerDragLocked(pointerData: {
4169
4151
  entity: Entity;
4170
4152
  opts?: Partial<EventSystemOptions>;
4171
4153
  }, cb: EventSystemCallback): void;
4172
- onProximityEnter(pointerData: {
4154
+ onPointerHoverEnter(pointerData: {
4173
4155
  entity: Entity;
4174
4156
  opts?: Partial<EventSystemOptions>;
4175
4157
  }, cb: EventSystemCallback): void;
4176
- onProximityLeave(pointerData: {
4158
+ onPointerHoverLeave(pointerData: {
4177
4159
  entity: Entity;
4178
4160
  opts?: Partial<EventSystemOptions>;
4179
4161
  }, cb: EventSystemCallback): void;
4180
- onProximityUp(pointerData: {
4162
+ onPointerUp(pointerData: {
4163
+ entity: Entity;
4164
+ optsList: EventSystemOptionsCallback[];
4165
+ }): void;
4166
+ onPointerUp(pointerData: {
4181
4167
  entity: Entity;
4182
4168
  opts?: Partial<EventSystemOptions>;
4183
4169
  }, cb: EventSystemCallback): void;
4170
+ // @deprecated (undocumented)
4171
+ onPointerUp(entity: Entity, cb: EventSystemCallback, opts?: Partial<EventSystemOptions>): void;
4184
4172
  removeOnPointerDown(entity: Entity): void;
4173
+ removeOnPointerDrag(entity: Entity): void;
4174
+ removeOnPointerDragEnd(entity: Entity): void;
4175
+ removeOnPointerDragLocked(entity: Entity): void;
4185
4176
  removeOnPointerHoverEnter(entity: Entity): void;
4186
4177
  removeOnPointerHoverLeave(entity: Entity): void;
4187
4178
  removeOnPointerUp(entity: Entity): void;
4188
- removeOnProximityDown(entity: Entity): void;
4189
- removeOnProximityEnter(entity: Entity): void;
4190
- removeOnProximityLeave(entity: Entity): void;
4191
- removeOnProximityUp(entity: Entity): void;
4192
4179
  }
4193
4180
 
4194
4181
  // @public
@@ -4199,13 +4186,15 @@ export const enum PointerEventType {
4199
4186
  // (undocumented)
4200
4187
  PET_DOWN = 1,
4201
4188
  // (undocumented)
4202
- PET_HOVER_ENTER = 2,
4189
+ PET_DRAG = 5,
4203
4190
  // (undocumented)
4204
- PET_HOVER_LEAVE = 3,
4191
+ PET_DRAG_END = 6,
4205
4192
  // (undocumented)
4206
- PET_PROXIMITY_ENTER = 4,
4193
+ PET_DRAG_LOCKED = 4,
4207
4194
  // (undocumented)
4208
- PET_PROXIMITY_LEAVE = 5,
4195
+ PET_HOVER_ENTER = 2,
4196
+ // (undocumented)
4197
+ PET_HOVER_LEAVE = 3,
4209
4198
  // (undocumented)
4210
4199
  PET_UP = 0
4211
4200
  }
@@ -4227,7 +4216,13 @@ export const PointerLock: LastWriteWinElementSetComponentDefinition<PBPointerLoc
4227
4216
  // @public (undocumented)
4228
4217
  export const enum PointerType {
4229
4218
  POT_MOUSE = 1,
4230
- POT_NONE = 0
4219
+ POT_NONE = 0,
4220
+ // (undocumented)
4221
+ POT_PAD = 2,
4222
+ // (undocumented)
4223
+ POT_TOUCH = 3,
4224
+ // (undocumented)
4225
+ POT_WAND = 4
4231
4226
  }
4232
4227
 
4233
4228
  // @public
@@ -4418,6 +4413,12 @@ export const enum RaycastQueryType {
4418
4413
  // @public (undocumented)
4419
4414
  export const RaycastResult: LastWriteWinElementSetComponentDefinition<PBRaycastResult>;
4420
4415
 
4416
+ // @public (undocumented)
4417
+ export const enum RaycastShape {
4418
+ RS_AVATAR = 1,
4419
+ RS_RAY = 0
4420
+ }
4421
+
4421
4422
  // @public (undocumented)
4422
4423
  export interface RaycastSystem {
4423
4424
  globalDirectionOptions(options?: Partial<GlobalDirectionRaycastOptions>): RaycastSystemOptions;
@@ -4472,6 +4473,8 @@ export interface ReactBasedUiSystem {
4472
4473
  addUiRenderer(entity: Entity, ui: UiComponent, options?: UiRendererOptions): void;
4473
4474
  destroy(): void;
4474
4475
  removeUiRenderer(entity: Entity): void;
4476
+ // @deprecated
4477
+ setTextureRenderer(entity: Entity, ui: UiComponent): void;
4475
4478
  setUiRenderer(ui: UiComponent, options?: UiRendererOptions): void;
4476
4479
  }
4477
4480
 
@@ -4507,7 +4510,7 @@ export namespace ReactEcs {
4507
4510
  useEffect: EffectHook;
4508
4511
  const // (undocumented)
4509
4512
  useState: StateHook;
4510
- export {};
4513
+ {};
4511
4514
  }
4512
4515
 
4513
4516
  // Warning: (tsdoc-at-sign-in-word) The "@" character looks like part of a TSDoc tag; use a backslash to escape it
@@ -4637,9 +4640,6 @@ export namespace RotateContinuous {
4637
4640
  export function encode(message: RotateContinuous, writer?: _m0.Writer): _m0.Writer;
4638
4641
  }
4639
4642
 
4640
- // @public
4641
- export function rotateVectorByQuaternion(v: Vector3Type, q: QuaternionType): Vector3Type;
4642
-
4643
4643
  // Warning: (ae-missing-release-tag) "RPCSendableMessage" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
4644
4644
  //
4645
4645
  // @public (undocumented)
@@ -4774,21 +4774,42 @@ export namespace Schemas {
4774
4774
  }) => void;
4775
4775
  }
4776
4776
 
4777
- // Warning: (tsdoc-undefined-tag) The TSDoc tag "@category" is not defined in this configuration
4778
- //
4779
- // @public
4780
- export function ScreenInsetArea(props: UiScreenInsetAreaProps): ReactEcs.JSX.Element;
4777
+ // @public (undocumented)
4778
+ export interface ScrollPositionValue {
4779
+ // (undocumented)
4780
+ value?: {
4781
+ $case: "position";
4782
+ position: PBVector2;
4783
+ } | {
4784
+ $case: "reference";
4785
+ reference: string;
4786
+ } | undefined;
4787
+ }
4788
+
4789
+ // @public (undocumented)
4790
+ export namespace ScrollPositionValue {
4791
+ // (undocumented)
4792
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): ScrollPositionValue;
4793
+ // (undocumented)
4794
+ export function encode(message: ScrollPositionValue, writer?: _m0.Writer): _m0.Writer;
4795
+ }
4781
4796
 
4782
4797
  // @public
4783
- export function setCompositeProvider(engine: IEngine, provider: CompositeProvider): void;
4798
+ export type ScrollVisibleType = 'horizontal' | 'vertical' | 'both' | 'hidden';
4784
4799
 
4785
4800
  // @public
4786
4801
  export function setGlobalPolyfill<T>(key: string, value: T): void;
4787
4802
 
4788
- // @public
4789
- export interface SetMoveRotateScaleParams extends MoveRotateScaleModeParams {
4790
- duration: number;
4791
- easingFunction?: EasingFunction;
4803
+ // @public (undocumented)
4804
+ export const enum ShowScrollBar {
4805
+ // (undocumented)
4806
+ SSB_BOTH = 0,
4807
+ // (undocumented)
4808
+ SSB_HIDDEN = 3,
4809
+ // (undocumented)
4810
+ SSB_ONLY_HORIZONTAL = 2,
4811
+ // (undocumented)
4812
+ SSB_ONLY_VERTICAL = 1
4792
4813
  }
4793
4814
 
4794
4815
  // @public (undocumented)
@@ -4904,6 +4925,9 @@ export namespace Texture {
4904
4925
  export function encode(message: Texture, writer?: _m0.Writer): _m0.Writer;
4905
4926
  }
4906
4927
 
4928
+ // @public (undocumented)
4929
+ export const TextureCamera: LastWriteWinElementSetComponentDefinition<PBTextureCamera>;
4930
+
4907
4931
  // @public (undocumented)
4908
4932
  export const enum TextureFilterMode {
4909
4933
  // (undocumented)
@@ -4983,6 +5007,9 @@ export interface TextureUnion {
4983
5007
  } | {
4984
5008
  $case: "videoTexture";
4985
5009
  videoTexture: VideoTexture;
5010
+ } | {
5011
+ $case: "uiTexture";
5012
+ uiTexture: UiCanvasTexture;
4986
5013
  } | undefined;
4987
5014
  }
4988
5015
 
@@ -5061,7 +5088,6 @@ export interface TransformComponentExtended extends TransformComponent {
5061
5088
  create(entity: Entity, val?: TransformTypeWithOptionals): TransformType;
5062
5089
  // (undocumented)
5063
5090
  createOrReplace(entity: Entity, val?: TransformTypeWithOptionals): TransformType;
5064
- localToWorldDirection(entity: Entity, localDirection: Vector3Type): Vector3Type;
5065
5091
  }
5066
5092
 
5067
5093
  // @public (undocumented)
@@ -5163,7 +5189,6 @@ export interface TweenComponentDefinitionExtended extends LastWriteWinElementSet
5163
5189
  Mode: TweenHelper;
5164
5190
  setMove(entity: Entity, start: PBVector3, end: PBVector3, duration: number, easingFunction?: EasingFunction): void;
5165
5191
  setMoveContinuous(entity: Entity, direction: PBVector3, speed: number, duration?: number): void;
5166
- setMoveRotateScale(entity: Entity, params: SetMoveRotateScaleParams): void;
5167
5192
  setRotate(entity: Entity, start: PBQuaternion, end: PBQuaternion, duration: number, easingFunction?: EasingFunction): void;
5168
5193
  setRotateContinuous(entity: Entity, direction: PBQuaternion, speed: number, duration?: number): void;
5169
5194
  setScale(entity: Entity, start: PBVector3, end: PBVector3, duration: number, easingFunction?: EasingFunction): void;
@@ -5178,8 +5203,6 @@ export interface TweenHelper {
5178
5203
  // (undocumented)
5179
5204
  MoveContinuous: (move: MoveContinuous) => PBTween['mode'];
5180
5205
  // (undocumented)
5181
- MoveRotateScale: (params: MoveRotateScaleModeParams) => PBTween['mode'];
5182
- // (undocumented)
5183
5206
  Rotate: (rotate: Rotate) => PBTween['mode'];
5184
5207
  // (undocumented)
5185
5208
  RotateContinuous: (rotate: RotateContinuous) => PBTween['mode'];
@@ -5247,6 +5270,7 @@ export interface UiBackgroundProps {
5247
5270
  textureMode?: TextureMode;
5248
5271
  textureSlices?: BorderRect | undefined;
5249
5272
  uvs?: number[];
5273
+ videoTexture?: UiVideoTexture;
5250
5274
  }
5251
5275
 
5252
5276
  // @public
@@ -5255,9 +5279,28 @@ export interface UiButtonProps extends UiLabelProps, EntityPropTypes {
5255
5279
  variant?: 'primary' | 'secondary';
5256
5280
  }
5257
5281
 
5282
+ // @public (undocumented)
5283
+ export const UiCanvas: LastWriteWinElementSetComponentDefinition<PBUiCanvas>;
5284
+
5258
5285
  // @public (undocumented)
5259
5286
  export const UiCanvasInformation: LastWriteWinElementSetComponentDefinition<PBUiCanvasInformation>;
5260
5287
 
5288
+ // @public (undocumented)
5289
+ export interface UiCanvasTexture {
5290
+ filterMode?: TextureFilterMode | undefined;
5291
+ // (undocumented)
5292
+ uiCanvasEntity: number;
5293
+ wrapMode?: TextureWrapMode | undefined;
5294
+ }
5295
+
5296
+ // @public (undocumented)
5297
+ export namespace UiCanvasTexture {
5298
+ // (undocumented)
5299
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): UiCanvasTexture;
5300
+ // (undocumented)
5301
+ export function encode(message: UiCanvasTexture, writer?: _m0.Writer): _m0.Writer;
5302
+ }
5303
+
5261
5304
  // @public (undocumented)
5262
5305
  export type UiComponent = () => ReactEcs.JSX.ReactNode;
5263
5306
 
@@ -5307,16 +5350,13 @@ export interface UiInputProps extends Omit<PBUiInput, 'font' | 'textAlign' | 'fo
5307
5350
  // @public (undocumented)
5308
5351
  export const UiInputResult: LastWriteWinElementSetComponentDefinition<PBUiInputResult>;
5309
5352
 
5310
- // @public
5311
- export type UiInteractableAreaProps = Omit<EntityPropTypes, 'uiTransform'> & {
5312
- uiTransform?: Omit<NonNullable<EntityPropTypes['uiTransform']>, 'positionType' | 'position'>;
5313
- };
5314
-
5315
5353
  // @public
5316
5354
  export interface UiLabelProps {
5317
5355
  color?: PBColor4 | undefined;
5318
5356
  font?: UiFontType | undefined;
5319
5357
  fontSize?: ScaleUnit | undefined;
5358
+ outlineColor?: PBColor4 | undefined;
5359
+ outlineWidth?: number | undefined;
5320
5360
  textAlign?: TextAlignType | undefined;
5321
5361
  textWrap?: UiTextWrapType | undefined;
5322
5362
  value: string;
@@ -5331,10 +5371,8 @@ export type UiRendererOptions = {
5331
5371
  virtualHeight: number;
5332
5372
  };
5333
5373
 
5334
- // @public
5335
- export type UiScreenInsetAreaProps = Omit<EntityPropTypes, 'uiTransform'> & {
5336
- uiTransform?: Omit<NonNullable<EntityPropTypes['uiTransform']>, 'positionType' | 'position'>;
5337
- };
5374
+ // @public (undocumented)
5375
+ export const UiScrollResult: LastWriteWinElementSetComponentDefinition<PBUiScrollResult>;
5338
5376
 
5339
5377
  // @public (undocumented)
5340
5378
  export const UiText: LastWriteWinElementSetComponentDefinition<PBUiText>;
@@ -5364,6 +5402,7 @@ export interface UiTransformProps {
5364
5402
  // (undocumented)
5365
5403
  borderWidth?: Partial<Position> | PositionUnit;
5366
5404
  display?: DisplayType;
5405
+ elementId?: string;
5367
5406
  flex?: number;
5368
5407
  flexBasis?: number;
5369
5408
  flexDirection?: FlexDirectionType;
@@ -5383,10 +5422,22 @@ export interface UiTransformProps {
5383
5422
  pointerFilter?: PointerFilterType;
5384
5423
  position?: Partial<Position> | PositionShorthand;
5385
5424
  positionType?: PositionType;
5425
+ scrollPosition?: PBVector2 | string;
5426
+ scrollVisible?: ScrollVisibleType;
5386
5427
  width?: PositionUnit | 'auto';
5387
5428
  zIndex?: number;
5388
5429
  }
5389
5430
 
5431
+ // @public
5432
+ export interface UiVideoTexture {
5433
+ // (undocumented)
5434
+ filterMode?: TextureFilterType;
5435
+ // (undocumented)
5436
+ videoPlayerEntity: Entity;
5437
+ // (undocumented)
5438
+ wrapMode?: TextureWrapType;
5439
+ }
5440
+
5390
5441
  // @public (undocumented)
5391
5442
  export type Unpacked<T> = T extends (infer U)[] ? U : T;
5392
5443