@dcl/playground-assets 7.22.5 → 7.22.6-25007982108.commit-83012ab

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.
@@ -156,12 +156,32 @@ export const AvatarAttach: LastWriteWinElementSetComponentDefinition<PBAvatarAtt
156
156
  // @public (undocumented)
157
157
  export const AvatarBase: LastWriteWinElementSetComponentDefinition<PBAvatarBase>;
158
158
 
159
+ // @public (undocumented)
160
+ export const enum AvatarControlType {
161
+ CCT_NONE = 0,
162
+ CCT_RELATIVE = 1,
163
+ CCT_TANK = 2
164
+ }
165
+
159
166
  // @public (undocumented)
160
167
  export const AvatarEmoteCommand: GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>;
161
168
 
162
169
  // @public (undocumented)
163
170
  export const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
164
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
+
182
+ // @public (undocumented)
183
+ export const AvatarLocomotionSettings: LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>;
184
+
165
185
  // @public (undocumented)
166
186
  export const AvatarModifierArea: LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>;
167
187
 
@@ -171,9 +191,47 @@ export const enum AvatarModifierType {
171
191
  AMT_HIDE_AVATARS = 0
172
192
  }
173
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;
220
+ }
221
+
174
222
  // @public (undocumented)
175
223
  export const AvatarShape: LastWriteWinElementSetComponentDefinition<PBAvatarShape>;
176
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
+
177
235
  // @public (undocumented)
178
236
  export interface AvatarTexture {
179
237
  filterMode?: TextureFilterMode | undefined;
@@ -376,9 +434,15 @@ export interface ByteBuffer {
376
434
  writeUtf8String(value: string, writeLength?: boolean): void;
377
435
  }
378
436
 
379
- // @public
437
+ // @public @deprecated
380
438
  export type Callback = () => void;
381
439
 
440
+ // @public (undocumented)
441
+ export const CameraLayer: LastWriteWinElementSetComponentDefinition<PBCameraLayer>;
442
+
443
+ // @public (undocumented)
444
+ export const CameraLayers: LastWriteWinElementSetComponentDefinition<PBCameraLayers>;
445
+
382
446
  // @public (undocumented)
383
447
  export const CameraMode: LastWriteWinElementSetComponentDefinition<PBCameraMode>;
384
448
 
@@ -427,6 +491,29 @@ export const enum CameraType {
427
491
  // @public (undocumented)
428
492
  export type Children = ReactEcs.JSX.ReactNode;
429
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
+
430
517
  // @public (undocumented)
431
518
  export const enum ColliderLayer {
432
519
  // (undocumented)
@@ -610,22 +697,6 @@ export type Color4Type = {
610
697
  a: number;
611
698
  };
612
699
 
613
- // @public (undocumented)
614
- export interface ColorRange {
615
- // (undocumented)
616
- end: PBColor4 | undefined;
617
- // (undocumented)
618
- start: PBColor4 | undefined;
619
- }
620
-
621
- // @public (undocumented)
622
- export namespace ColorRange {
623
- // (undocumented)
624
- export function decode(input: _m0.Reader | Uint8Array, length?: number): ColorRange;
625
- // (undocumented)
626
- export function encode(message: ColorRange, writer?: _m0.Writer): _m0.Writer;
627
- }
628
-
629
700
  // @public (undocumented)
630
701
  export interface ComponentData {
631
702
  // (undocumented)
@@ -667,15 +738,23 @@ export const componentDefinitionByName: {
667
738
  "core::AvatarBase": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarBase>>;
668
739
  "core::AvatarEmoteCommand": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>>;
669
740
  "core::AvatarEquippedData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>>;
741
+ "core::AvatarLocomotionSettings": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>>;
670
742
  "core::AvatarModifierArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>>;
743
+ "core::AvatarMovement": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarMovement>>;
744
+ "core::AvatarMovementInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarMovementInfo>>;
671
745
  "core::AvatarShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarShape>>;
672
746
  "core::Billboard": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBBillboard>>;
747
+ "core::CameraLayer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraLayer>>;
748
+ "core::CameraLayers": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraLayers>>;
673
749
  "core::CameraMode": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraMode>>;
674
750
  "core::CameraModeArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraModeArea>>;
675
751
  "core::EngineInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBEngineInfo>>;
752
+ "core::GlobalLight": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGlobalLight>>;
676
753
  "core::GltfContainer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainer>>;
677
754
  "core::GltfContainerLoadingState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>>;
755
+ "core::GltfNode": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNode>>;
678
756
  "core::GltfNodeModifiers": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNodeModifiers>>;
757
+ "core::GltfNodeState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNodeState>>;
679
758
  "core::InputModifier": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBInputModifier>>;
680
759
  "core::LightSource": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBLightSource>>;
681
760
  "core::MainCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMainCamera>>;
@@ -683,9 +762,6 @@ export const componentDefinitionByName: {
683
762
  "core::MeshCollider": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshCollider>>;
684
763
  "core::MeshRenderer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshRenderer>>;
685
764
  "core::NftShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBNftShape>>;
686
- "core::ParticleSystem": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBParticleSystem>>;
687
- "core::PhysicsCombinedForce": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPhysicsCombinedForce>>;
688
- "core::PhysicsCombinedImpulse": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPhysicsCombinedImpulse>>;
689
765
  "core::PlayerIdentityData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPlayerIdentityData>>;
690
766
  "core::PointerEvents": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPointerEvents>>;
691
767
  "core::PointerEventsResult": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBPointerEventsResult>>;
@@ -696,17 +772,20 @@ export const componentDefinitionByName: {
696
772
  "core::RealmInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRealmInfo>>;
697
773
  "core::SkyboxTime": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBSkyboxTime>>;
698
774
  "core::TextShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTextShape>>;
775
+ "core::TextureCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTextureCamera>>;
699
776
  "core::TriggerArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTriggerArea>>;
700
777
  "core::TriggerAreaResult": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBTriggerAreaResult>>;
701
778
  "core::Tween": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTween>>;
702
779
  "core::TweenSequence": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTweenSequence>>;
703
780
  "core::TweenState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTweenState>>;
704
781
  "core::UiBackground": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiBackground>>;
782
+ "core::UiCanvas": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiCanvas>>;
705
783
  "core::UiCanvasInformation": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiCanvasInformation>>;
706
784
  "core::UiDropdown": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiDropdown>>;
707
785
  "core::UiDropdownResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiDropdownResult>>;
708
786
  "core::UiInput": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiInput>>;
709
787
  "core::UiInputResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiInputResult>>;
788
+ "core::UiScrollResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiScrollResult>>;
710
789
  "core::UiText": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiText>>;
711
790
  "core::UiTransform": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiTransform>>;
712
791
  "core::VideoEvent": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBVideoEvent>>;
@@ -1144,10 +1223,18 @@ export type EntityComponents = {
1144
1223
  uiBackground: PBUiBackground;
1145
1224
  uiInput: PBUiInput;
1146
1225
  uiDropdown: PBUiDropdown;
1147
- onMouseDown: Callback;
1148
- onMouseUp: Callback;
1149
- onMouseEnter: Callback;
1150
- 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;
1151
1238
  };
1152
1239
 
1153
1240
  // @public (undocumented)
@@ -1198,7 +1285,11 @@ export type EventSystemOptions = {
1198
1285
  showFeedback?: boolean;
1199
1286
  showHighlight?: boolean;
1200
1287
  maxPlayerDistance?: number;
1201
- priority?: number;
1288
+ };
1289
+
1290
+ // @public (undocumented)
1291
+ export type EventSystemOptionsCallback = EventSystemOptions & {
1292
+ cb: EventSystemCallback;
1202
1293
  };
1203
1294
 
1204
1295
  // @public
@@ -1245,22 +1336,6 @@ export type FlexWrapType = 'wrap' | 'nowrap' | 'wrap-reverse';
1245
1336
  // @public (undocumented)
1246
1337
  export type FloatArray = number[];
1247
1338
 
1248
- // @public (undocumented)
1249
- export interface FloatRange {
1250
- // (undocumented)
1251
- end: number;
1252
- // (undocumented)
1253
- start: number;
1254
- }
1255
-
1256
- // @public (undocumented)
1257
- export namespace FloatRange {
1258
- // (undocumented)
1259
- export function decode(input: _m0.Reader | Uint8Array, length?: number): FloatRange;
1260
- // (undocumented)
1261
- export function encode(message: FloatRange, writer?: _m0.Writer): _m0.Writer;
1262
- }
1263
-
1264
1339
  // @public (undocumented)
1265
1340
  export const enum Font {
1266
1341
  // (undocumented)
@@ -1308,6 +1383,9 @@ export type GlobalDirectionRaycastSystemOptions = {
1308
1383
  direction?: PBVector3;
1309
1384
  };
1310
1385
 
1386
+ // @public (undocumented)
1387
+ export const GlobalLight: LastWriteWinElementSetComponentDefinition<PBGlobalLight>;
1388
+
1311
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)
1312
1390
  //
1313
1391
  // @public (undocumented)
@@ -1326,9 +1404,25 @@ export const GltfContainer: LastWriteWinElementSetComponentDefinition<PBGltfCont
1326
1404
  // @public (undocumented)
1327
1405
  export const GltfContainerLoadingState: LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>;
1328
1406
 
1407
+ // @public (undocumented)
1408
+ export const GltfNode: LastWriteWinElementSetComponentDefinition<PBGltfNode>;
1409
+
1329
1410
  // @public (undocumented)
1330
1411
  export const GltfNodeModifiers: LastWriteWinElementSetComponentDefinition<PBGltfNodeModifiers>;
1331
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
+
1332
1426
  // @public (undocumented)
1333
1427
  export interface GrowOnlyValueSetComponentDefinition<T> extends BaseComponent<T> {
1334
1428
  addValue(entity: Entity, val: DeepReadonly<T>): DeepReadonlySet<T>;
@@ -1453,6 +1547,7 @@ export type IInputSystem = {
1453
1547
  isTriggered: (inputAction: InputAction, pointerEventType: PointerEventType, entity?: Entity) => boolean;
1454
1548
  isPressed: (inputAction: InputAction) => boolean;
1455
1549
  getInputCommand: (inputAction: InputAction, pointerEventType: PointerEventType, entity?: Entity) => PBPointerEventsResult | null;
1550
+ getInputCommands: () => Generator<PBPointerEventsResult>;
1456
1551
  };
1457
1552
 
1458
1553
  // @public
@@ -1581,14 +1676,6 @@ export type InstanceCompositeOptions = {
1581
1676
  alreadyRequestedSrc?: Set<string>;
1582
1677
  };
1583
1678
 
1584
- // @public (undocumented)
1585
- export const enum InteractionType {
1586
- // (undocumented)
1587
- CURSOR = 0,
1588
- // (undocumented)
1589
- PROXIMITY = 1
1590
- }
1591
-
1592
1679
  // @public (undocumented)
1593
1680
  export interface ISchema<T = any> {
1594
1681
  // (undocumented)
@@ -1663,13 +1750,6 @@ export type JustifyType = 'flex-start' | 'center' | 'flex-end' | 'space-between'
1663
1750
  // @public
1664
1751
  export type Key = number | string;
1665
1752
 
1666
- // @public
1667
- export enum KnockbackFalloff {
1668
- CONSTANT = 0,
1669
- INVERSE_SQUARE = 2,
1670
- LINEAR = 1
1671
- }
1672
-
1673
1753
  // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
1674
1754
  // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
1675
1755
  // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
@@ -1717,10 +1797,18 @@ export interface LightSourceHelper {
1717
1797
 
1718
1798
  // @public
1719
1799
  export type Listeners = {
1720
- onMouseDown?: Callback;
1721
- onMouseUp?: Callback;
1722
- onMouseEnter?: Callback;
1723
- 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;
1724
1812
  };
1725
1813
 
1726
1814
  // @public (undocumented)
@@ -1964,6 +2052,7 @@ export const MeshCollider: MeshColliderComponentDefinitionExtended;
1964
2052
  export interface MeshColliderComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBMeshCollider> {
1965
2053
  setBox(entity: Entity, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
1966
2054
  setCylinder(entity: Entity, radiusBottom?: number, radiusTop?: number, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
2055
+ setGltfMesh(entity: Entity, source: string, meshName: string, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
1967
2056
  setPlane(entity: Entity, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
1968
2057
  setSphere(entity: Entity, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
1969
2058
  }
@@ -1977,6 +2066,7 @@ export const MeshRenderer: MeshRendererComponentDefinitionExtended;
1977
2066
  export interface MeshRendererComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBMeshRenderer> {
1978
2067
  setBox(entity: Entity, uvs?: number[]): void;
1979
2068
  setCylinder(entity: Entity, radiusBottom?: number, radiusTop?: number): void;
2069
+ setGltfMesh(entity: Entity, source: string, meshName: string): void;
1980
2070
  setPlane(entity: Entity, uvs?: number[]): void;
1981
2071
  setSphere(entity: Entity): void;
1982
2072
  }
@@ -2024,45 +2114,19 @@ export namespace MoveContinuous {
2024
2114
  export function encode(message: MoveContinuous, writer?: _m0.Writer): _m0.Writer;
2025
2115
  }
2026
2116
 
2027
- // @public (undocumented)
2028
- export interface MoveRotateScale {
2029
- // (undocumented)
2030
- positionEnd: PBVector3 | undefined;
2031
- // (undocumented)
2032
- positionStart: PBVector3 | undefined;
2033
- // (undocumented)
2034
- rotationEnd: PBQuaternion | undefined;
2035
- // (undocumented)
2036
- rotationStart: PBQuaternion | undefined;
2037
- // (undocumented)
2038
- scaleEnd: PBVector3 | undefined;
2039
- // (undocumented)
2040
- scaleStart: PBVector3 | undefined;
2041
- }
2042
-
2043
- // @public (undocumented)
2044
- export namespace MoveRotateScale {
2045
- // (undocumented)
2046
- export function decode(input: _m0.Reader | Uint8Array, length?: number): MoveRotateScale;
2047
- // (undocumented)
2048
- export function encode(message: MoveRotateScale, writer?: _m0.Writer): _m0.Writer;
2049
- }
2050
-
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
+ //
2051
2128
  // @public
2052
- export interface MoveRotateScaleModeParams {
2053
- position?: {
2054
- start: PBVector3;
2055
- end: PBVector3;
2056
- };
2057
- rotation?: {
2058
- start: PBQuaternion;
2059
- end: PBQuaternion;
2060
- };
2061
- scale?: {
2062
- start: PBVector3;
2063
- end: PBVector3;
2064
- };
2065
- }
2129
+ export type MultiCallback = Partial<Record<InputAction, EventSystemCallback>>;
2066
2130
 
2067
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)
2068
2132
  //
@@ -2270,27 +2334,22 @@ export const onVideoEvent: Observable<{
2270
2334
  totalVideoLength: number;
2271
2335
  }>;
2272
2336
 
2273
- // @public
2274
- export type OverflowType = 'hidden' | 'scroll' | 'visible';
2275
-
2276
- // 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)
2277
- //
2278
- // @public (undocumented)
2279
- export const ParticleSystem: ParticleSystemComponentDefinitionExtended;
2280
-
2281
2337
  // @public (undocumented)
2282
- export interface ParticleSystemComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBParticleSystem> {
2283
- Shape: ParticleSystemHelper;
2338
+ export interface Orthographic {
2339
+ verticalRange?: number | undefined;
2284
2340
  }
2285
2341
 
2286
2342
  // @public (undocumented)
2287
- export interface ParticleSystemHelper {
2288
- Box: (box?: PBParticleSystem_Box) => PBParticleSystem['shape'];
2289
- Cone: (cone?: PBParticleSystem_Cone) => PBParticleSystem['shape'];
2290
- Point: (point?: PBParticleSystem_Point) => PBParticleSystem['shape'];
2291
- 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;
2292
2348
  }
2293
2349
 
2350
+ // @public
2351
+ export type OverflowType = 'hidden' | 'scroll' | 'visible';
2352
+
2294
2353
  // @public (undocumented)
2295
2354
  export interface PBAnimationState {
2296
2355
  clip: string;
@@ -2460,6 +2519,7 @@ export namespace PBAvatarEmoteCommand {
2460
2519
  export interface PBAvatarEquippedData {
2461
2520
  // (undocumented)
2462
2521
  emoteUrns: string[];
2522
+ forceRender: string[];
2463
2523
  // (undocumented)
2464
2524
  wearableUrns: string[];
2465
2525
  }
@@ -2472,11 +2532,32 @@ export namespace PBAvatarEquippedData {
2472
2532
  export function encode(message: PBAvatarEquippedData, writer?: _m0.Writer): _m0.Writer;
2473
2533
  }
2474
2534
 
2535
+ // @public (undocumented)
2536
+ export interface PBAvatarLocomotionSettings {
2537
+ hardLandingCooldown?: number | undefined;
2538
+ jogSpeed?: number | undefined;
2539
+ jumpHeight?: number | undefined;
2540
+ runJumpHeight?: number | undefined;
2541
+ runSpeed?: number | undefined;
2542
+ walkSpeed?: number | undefined;
2543
+ }
2544
+
2545
+ // @public (undocumented)
2546
+ export namespace PBAvatarLocomotionSettings {
2547
+ // (undocumented)
2548
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarLocomotionSettings;
2549
+ // (undocumented)
2550
+ export function encode(message: PBAvatarLocomotionSettings, writer?: _m0.Writer): _m0.Writer;
2551
+ }
2552
+
2475
2553
  // @public (undocumented)
2476
2554
  export interface PBAvatarModifierArea {
2477
2555
  area: PBVector3 | undefined;
2478
2556
  excludeIds: string[];
2479
2557
  modifiers: AvatarModifierType[];
2558
+ // (undocumented)
2559
+ movementSettings?: AvatarMovementSettings | undefined;
2560
+ useColliderRange?: boolean | undefined;
2480
2561
  }
2481
2562
 
2482
2563
  // @public (undocumented)
@@ -2487,6 +2568,40 @@ export namespace PBAvatarModifierArea {
2487
2568
  export function encode(message: PBAvatarModifierArea, writer?: _m0.Writer): _m0.Writer;
2488
2569
  }
2489
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
+
2490
2605
  // @public (undocumented)
2491
2606
  export interface PBAvatarShape {
2492
2607
  bodyShape?: string | undefined;
@@ -2494,6 +2609,7 @@ export interface PBAvatarShape {
2494
2609
  expressionTriggerId?: string | undefined;
2495
2610
  expressionTriggerTimestamp?: number | undefined;
2496
2611
  eyeColor?: PBColor3 | undefined;
2612
+ forceRender: string[];
2497
2613
  hairColor?: PBColor3 | undefined;
2498
2614
  id: string;
2499
2615
  name?: string | undefined;
@@ -2524,6 +2640,42 @@ export namespace PBBillboard {
2524
2640
  export function encode(message: PBBillboard, writer?: _m0.Writer): _m0.Writer;
2525
2641
  }
2526
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
+
2527
2679
  // @public (undocumented)
2528
2680
  export interface PBCameraMode {
2529
2681
  mode: CameraType;
@@ -2540,7 +2692,10 @@ export namespace PBCameraMode {
2540
2692
  // @public (undocumented)
2541
2693
  export interface PBCameraModeArea {
2542
2694
  area: PBVector3 | undefined;
2695
+ // (undocumented)
2696
+ cinematicSettings?: CinematicSettings | undefined;
2543
2697
  mode: CameraType;
2698
+ useColliderRange?: boolean | undefined;
2544
2699
  }
2545
2700
 
2546
2701
  // @public (undocumented)
@@ -2604,6 +2759,21 @@ export namespace PBEngineInfo {
2604
2759
  export function encode(message: PBEngineInfo, writer?: _m0.Writer): _m0.Writer;
2605
2760
  }
2606
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
+
2607
2777
  // @public (undocumented)
2608
2778
  export interface PBGltfContainer {
2609
2779
  invisibleMeshesCollisionMask?: number | undefined;
@@ -2621,8 +2791,13 @@ export namespace PBGltfContainer {
2621
2791
 
2622
2792
  // @public (undocumented)
2623
2793
  export interface PBGltfContainerLoadingState {
2794
+ animationNames: string[];
2624
2795
  // (undocumented)
2625
2796
  currentState: LoadingState;
2797
+ materialNames: string[];
2798
+ meshNames: string[];
2799
+ nodePaths: string[];
2800
+ skinNames: string[];
2626
2801
  }
2627
2802
 
2628
2803
  // @public (undocumented)
@@ -2633,6 +2808,19 @@ export namespace PBGltfContainerLoadingState {
2633
2808
  export function encode(message: PBGltfContainerLoadingState, writer?: _m0.Writer): _m0.Writer;
2634
2809
  }
2635
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
+
2636
2824
  // @public (undocumented)
2637
2825
  export interface PBGltfNodeModifiers {
2638
2826
  // (undocumented)
@@ -2662,6 +2850,22 @@ export namespace PBGltfNodeModifiers_GltfNodeModifier {
2662
2850
  export function encode(message: PBGltfNodeModifiers_GltfNodeModifier, writer?: _m0.Writer): _m0.Writer;
2663
2851
  }
2664
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
+
2665
2869
  // @public (undocumented)
2666
2870
  export interface PBInputModifier {
2667
2871
  // (undocumented)
@@ -2684,12 +2888,8 @@ export interface PBInputModifier_StandardInput {
2684
2888
  // (undocumented)
2685
2889
  disableAll?: boolean | undefined;
2686
2890
  // (undocumented)
2687
- disableDoubleJump?: boolean | undefined;
2688
- // (undocumented)
2689
2891
  disableEmote?: boolean | undefined;
2690
2892
  // (undocumented)
2691
- disableGliding?: boolean | undefined;
2692
- // (undocumented)
2693
2893
  disableJog?: boolean | undefined;
2694
2894
  // (undocumented)
2695
2895
  disableJump?: boolean | undefined;
@@ -2774,6 +2974,7 @@ export namespace PBMainCamera {
2774
2974
 
2775
2975
  // @public (undocumented)
2776
2976
  export interface PBMaterial {
2977
+ gltf?: PBMaterial_GltfMaterial | undefined;
2777
2978
  // (undocumented)
2778
2979
  material?: {
2779
2980
  $case: "unlit";
@@ -2792,6 +2993,22 @@ export namespace PBMaterial {
2792
2993
  export function encode(message: PBMaterial, writer?: _m0.Writer): _m0.Writer;
2793
2994
  }
2794
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
+
2795
3012
  // @public (undocumented)
2796
3013
  export interface PBMaterial_PbrMaterial {
2797
3014
  albedoColor?: PBColor4 | undefined;
@@ -2853,6 +3070,9 @@ export interface PBMeshCollider {
2853
3070
  } | {
2854
3071
  $case: "plane";
2855
3072
  plane: PBMeshCollider_PlaneMesh;
3073
+ } | {
3074
+ $case: "gltf";
3075
+ gltf: PBMeshCollider_GltfMesh;
2856
3076
  } | undefined;
2857
3077
  }
2858
3078
 
@@ -2890,6 +3110,20 @@ export namespace PBMeshCollider_CylinderMesh {
2890
3110
  export function encode(message: PBMeshCollider_CylinderMesh, writer?: _m0.Writer): _m0.Writer;
2891
3111
  }
2892
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
+
2893
3127
  // @public (undocumented)
2894
3128
  export interface PBMeshCollider_PlaneMesh {
2895
3129
  }
@@ -2929,6 +3163,9 @@ export interface PBMeshRenderer {
2929
3163
  } | {
2930
3164
  $case: "plane";
2931
3165
  plane: PBMeshRenderer_PlaneMesh;
3166
+ } | {
3167
+ $case: "gltf";
3168
+ gltf: PBMeshRenderer_GltfMesh;
2932
3169
  } | undefined;
2933
3170
  }
2934
3171
 
@@ -2967,6 +3204,20 @@ export namespace PBMeshRenderer_CylinderMesh {
2967
3204
  export function encode(message: PBMeshRenderer_CylinderMesh, writer?: _m0.Writer): _m0.Writer;
2968
3205
  }
2969
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
+
2970
3221
  // @public (undocumented)
2971
3222
  export interface PBMeshRenderer_PlaneMesh {
2972
3223
  uvs: number[];
@@ -3007,225 +3258,6 @@ export namespace PBNftShape {
3007
3258
  export function encode(message: PBNftShape, writer?: _m0.Writer): _m0.Writer;
3008
3259
  }
3009
3260
 
3010
- // @public (undocumented)
3011
- export interface PBParticleSystem {
3012
- active?: boolean | undefined;
3013
- additionalForce?: PBVector3 | undefined;
3014
- billboard?: boolean | undefined;
3015
- blendMode?: PBParticleSystem_BlendMode | undefined;
3016
- bursts?: PBParticleSystem_BurstConfiguration | undefined;
3017
- // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
3018
- // Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
3019
- colorOverTime?: ColorRange | undefined;
3020
- faceTravelDirection?: boolean | undefined;
3021
- gravity?: number | undefined;
3022
- initialColor?: ColorRange | undefined;
3023
- initialRotation?: PBQuaternion | undefined;
3024
- initialSize?: FloatRange | undefined;
3025
- initialVelocitySpeed?: FloatRange | undefined;
3026
- lifetime?: number | undefined;
3027
- limitVelocity?: PBParticleSystem_LimitVelocity | undefined;
3028
- loop?: boolean | undefined;
3029
- maxParticles?: number | undefined;
3030
- playbackState?: PBParticleSystem_PlaybackState | undefined;
3031
- prewarm?: boolean | undefined;
3032
- rate?: number | undefined;
3033
- rotationOverTime?: PBQuaternion | undefined;
3034
- // (undocumented)
3035
- shape?: {
3036
- $case: "point";
3037
- point: PBParticleSystem_Point;
3038
- } | {
3039
- $case: "sphere";
3040
- sphere: PBParticleSystem_Sphere;
3041
- } | {
3042
- $case: "cone";
3043
- cone: PBParticleSystem_Cone;
3044
- } | {
3045
- $case: "box";
3046
- box: PBParticleSystem_Box;
3047
- } | undefined;
3048
- simulationSpace?: PBParticleSystem_SimulationSpace | undefined;
3049
- // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
3050
- // Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
3051
- sizeOverTime?: FloatRange | undefined;
3052
- spriteSheet?: PBParticleSystem_SpriteSheetAnimation | undefined;
3053
- texture?: Texture | undefined;
3054
- }
3055
-
3056
- // @public (undocumented)
3057
- export namespace PBParticleSystem {
3058
- // (undocumented)
3059
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem;
3060
- // (undocumented)
3061
- export function encode(message: PBParticleSystem, writer?: _m0.Writer): _m0.Writer;
3062
- }
3063
-
3064
- // @public (undocumented)
3065
- const enum PBParticleSystem_BlendMode {
3066
- PSB_ADD = 1,
3067
- PSB_ALPHA = 0,
3068
- PSB_MULTIPLY = 2
3069
- }
3070
- export { PBParticleSystem_BlendMode }
3071
- export { PBParticleSystem_BlendMode as ParticleSystemBlendMode }
3072
-
3073
- // @public (undocumented)
3074
- export interface PBParticleSystem_Box {
3075
- // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
3076
- // Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
3077
- size?: PBVector3 | undefined;
3078
- }
3079
-
3080
- // @public (undocumented)
3081
- export namespace PBParticleSystem_Box {
3082
- // (undocumented)
3083
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Box;
3084
- // (undocumented)
3085
- export function encode(message: PBParticleSystem_Box, writer?: _m0.Writer): _m0.Writer;
3086
- }
3087
-
3088
- // @public (undocumented)
3089
- export interface PBParticleSystem_Burst {
3090
- count: number;
3091
- cycles?: number | undefined;
3092
- interval?: number | undefined;
3093
- probability?: number | undefined;
3094
- time: number;
3095
- }
3096
-
3097
- // @public (undocumented)
3098
- export namespace PBParticleSystem_Burst {
3099
- // (undocumented)
3100
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Burst;
3101
- // (undocumented)
3102
- export function encode(message: PBParticleSystem_Burst, writer?: _m0.Writer): _m0.Writer;
3103
- }
3104
-
3105
- // @public (undocumented)
3106
- export interface PBParticleSystem_BurstConfiguration {
3107
- // (undocumented)
3108
- values: PBParticleSystem_Burst[];
3109
- }
3110
-
3111
- // @public (undocumented)
3112
- export namespace PBParticleSystem_BurstConfiguration {
3113
- // (undocumented)
3114
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_BurstConfiguration;
3115
- // (undocumented)
3116
- export function encode(message: PBParticleSystem_BurstConfiguration, writer?: _m0.Writer): _m0.Writer;
3117
- }
3118
-
3119
- // @public (undocumented)
3120
- export interface PBParticleSystem_Cone {
3121
- angle?: number | undefined;
3122
- radius?: number | undefined;
3123
- }
3124
-
3125
- // @public (undocumented)
3126
- export namespace PBParticleSystem_Cone {
3127
- // (undocumented)
3128
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Cone;
3129
- // (undocumented)
3130
- export function encode(message: PBParticleSystem_Cone, writer?: _m0.Writer): _m0.Writer;
3131
- }
3132
-
3133
- // @public (undocumented)
3134
- export interface PBParticleSystem_LimitVelocity {
3135
- dampen?: number | undefined;
3136
- speed: number;
3137
- }
3138
-
3139
- // @public (undocumented)
3140
- export namespace PBParticleSystem_LimitVelocity {
3141
- // (undocumented)
3142
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_LimitVelocity;
3143
- // (undocumented)
3144
- export function encode(message: PBParticleSystem_LimitVelocity, writer?: _m0.Writer): _m0.Writer;
3145
- }
3146
-
3147
- // @public (undocumented)
3148
- const enum PBParticleSystem_PlaybackState {
3149
- PS_PAUSED = 1,
3150
- PS_PLAYING = 0,
3151
- PS_STOPPED = 2
3152
- }
3153
- export { PBParticleSystem_PlaybackState }
3154
- export { PBParticleSystem_PlaybackState as ParticleSystemPlaybackState }
3155
-
3156
- // @public (undocumented)
3157
- export interface PBParticleSystem_Point {
3158
- }
3159
-
3160
- // @public (undocumented)
3161
- export namespace PBParticleSystem_Point {
3162
- // (undocumented)
3163
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Point;
3164
- // (undocumented)
3165
- export function encode(_: PBParticleSystem_Point, writer?: _m0.Writer): _m0.Writer;
3166
- }
3167
-
3168
- // @public (undocumented)
3169
- export const enum PBParticleSystem_SimulationSpace {
3170
- PSS_LOCAL = 0,
3171
- PSS_WORLD = 1
3172
- }
3173
-
3174
- // @public (undocumented)
3175
- export interface PBParticleSystem_Sphere {
3176
- radius?: number | undefined;
3177
- }
3178
-
3179
- // @public (undocumented)
3180
- export namespace PBParticleSystem_Sphere {
3181
- // (undocumented)
3182
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Sphere;
3183
- // (undocumented)
3184
- export function encode(message: PBParticleSystem_Sphere, writer?: _m0.Writer): _m0.Writer;
3185
- }
3186
-
3187
- // @public (undocumented)
3188
- export interface PBParticleSystem_SpriteSheetAnimation {
3189
- framesPerSecond?: number | undefined;
3190
- tilesX: number;
3191
- tilesY: number;
3192
- }
3193
-
3194
- // @public (undocumented)
3195
- export namespace PBParticleSystem_SpriteSheetAnimation {
3196
- // (undocumented)
3197
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_SpriteSheetAnimation;
3198
- // (undocumented)
3199
- export function encode(message: PBParticleSystem_SpriteSheetAnimation, writer?: _m0.Writer): _m0.Writer;
3200
- }
3201
-
3202
- // @public (undocumented)
3203
- export interface PBPhysicsCombinedForce {
3204
- vector: PBVector3 | undefined;
3205
- }
3206
-
3207
- // @public (undocumented)
3208
- export namespace PBPhysicsCombinedForce {
3209
- // (undocumented)
3210
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBPhysicsCombinedForce;
3211
- // (undocumented)
3212
- export function encode(message: PBPhysicsCombinedForce, writer?: _m0.Writer): _m0.Writer;
3213
- }
3214
-
3215
- // @public (undocumented)
3216
- export interface PBPhysicsCombinedImpulse {
3217
- eventId: number;
3218
- vector: PBVector3 | undefined;
3219
- }
3220
-
3221
- // @public (undocumented)
3222
- export namespace PBPhysicsCombinedImpulse {
3223
- // (undocumented)
3224
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBPhysicsCombinedImpulse;
3225
- // (undocumented)
3226
- export function encode(message: PBPhysicsCombinedImpulse, writer?: _m0.Writer): _m0.Writer;
3227
- }
3228
-
3229
3261
  // @public (undocumented)
3230
3262
  export interface PBPlayerIdentityData {
3231
3263
  address: string;
@@ -3258,7 +3290,6 @@ export namespace PBPointerEvents {
3258
3290
  export interface PBPointerEvents_Entry {
3259
3291
  eventInfo: PBPointerEvents_Info | undefined;
3260
3292
  eventType: PointerEventType;
3261
- interactionType?: InteractionType | undefined;
3262
3293
  }
3263
3294
 
3264
3295
  // @public (undocumented)
@@ -3275,7 +3306,6 @@ export interface PBPointerEvents_Info {
3275
3306
  hoverText?: string | undefined;
3276
3307
  maxDistance?: number | undefined;
3277
3308
  maxPlayerDistance?: number | undefined;
3278
- priority?: number | undefined;
3279
3309
  showFeedback?: boolean | undefined;
3280
3310
  showHighlight?: boolean | undefined;
3281
3311
  }
@@ -3393,9 +3423,11 @@ export interface PBRaycast {
3393
3423
  $case: "targetEntity";
3394
3424
  targetEntity: number;
3395
3425
  } | undefined;
3426
+ includeWorld?: boolean | undefined;
3396
3427
  maxDistance: number;
3397
3428
  originOffset?: PBVector3 | undefined;
3398
3429
  queryType: RaycastQueryType;
3430
+ shape?: RaycastShape | undefined;
3399
3431
  timestamp?: number | undefined;
3400
3432
  }
3401
3433
 
@@ -3490,6 +3522,32 @@ export namespace PBTextShape {
3490
3522
  export function encode(message: PBTextShape, writer?: _m0.Writer): _m0.Writer;
3491
3523
  }
3492
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
+
3493
3551
  // @public (undocumented)
3494
3552
  export interface PBTriggerArea {
3495
3553
  collisionMask?: number | undefined;
@@ -3568,9 +3626,6 @@ export interface PBTween {
3568
3626
  } | {
3569
3627
  $case: "textureMoveContinuous";
3570
3628
  textureMoveContinuous: TextureMoveContinuous;
3571
- } | {
3572
- $case: "moveRotateScale";
3573
- moveRotateScale: MoveRotateScale;
3574
3629
  } | undefined;
3575
3630
  playing?: boolean | undefined;
3576
3631
  }
@@ -3633,6 +3688,23 @@ export namespace PBUiBackground {
3633
3688
  export function encode(message: PBUiBackground, writer?: _m0.Writer): _m0.Writer;
3634
3689
  }
3635
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
+
3636
3708
  // @public (undocumented)
3637
3709
  export interface PBUiCanvasInformation {
3638
3710
  devicePixelRatio: number;
@@ -3726,11 +3798,27 @@ export namespace PBUiInputResult {
3726
3798
  export function encode(message: PBUiInputResult, writer?: _m0.Writer): _m0.Writer;
3727
3799
  }
3728
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
+
3729
3815
  // @public (undocumented)
3730
3816
  export interface PBUiText {
3731
3817
  color?: PBColor4 | undefined;
3732
3818
  font?: Font | undefined;
3733
3819
  fontSize?: number | undefined;
3820
+ outlineColor?: PBColor4 | undefined;
3821
+ outlineWidth?: number | undefined;
3734
3822
  textAlign?: TextAlignMode | undefined;
3735
3823
  textWrap?: TextWrap | undefined;
3736
3824
  value: string;
@@ -3781,6 +3869,7 @@ export interface PBUiTransform {
3781
3869
  borderTopWidth?: number | undefined;
3782
3870
  borderTopWidthUnit?: YGUnit | undefined;
3783
3871
  display: YGDisplay;
3872
+ elementId?: string | undefined;
3784
3873
  // (undocumented)
3785
3874
  flexBasis: number;
3786
3875
  flexBasisUnit: YGUnit;
@@ -3849,6 +3938,8 @@ export interface PBUiTransform {
3849
3938
  positionType: YGPositionType;
3850
3939
  // (undocumented)
3851
3940
  rightOf: number;
3941
+ scrollPosition?: ScrollPositionValue | undefined;
3942
+ scrollVisible?: ShowScrollBar | undefined;
3852
3943
  // (undocumented)
3853
3944
  width: number;
3854
3945
  widthUnit: YGUnit;
@@ -3968,29 +4059,17 @@ export namespace PBVisibilityComponent {
3968
4059
  export function encode(message: PBVisibilityComponent, writer?: _m0.Writer): _m0.Writer;
3969
4060
  }
3970
4061
 
3971
- // @public
3972
- export const Physics: PhysicsSystem;
3973
-
3974
- // @public (undocumented)
3975
- export const PhysicsCombinedForce: LastWriteWinElementSetComponentDefinition<PBPhysicsCombinedForce>;
3976
-
3977
4062
  // @public (undocumented)
3978
- export const PhysicsCombinedImpulse: LastWriteWinElementSetComponentDefinition<PBPhysicsCombinedImpulse>;
4063
+ export interface Perspective {
4064
+ fieldOfView?: number | undefined;
4065
+ }
3979
4066
 
3980
4067
  // @public (undocumented)
3981
- export interface PhysicsSystem {
3982
- applyForceToPlayer(source: Entity, vector: Vector3Type): void;
4068
+ export namespace Perspective {
3983
4069
  // (undocumented)
3984
- applyForceToPlayer(source: Entity, direction: Vector3Type, magnitude: number): void;
3985
- applyForceToPlayerForDuration(source: Entity, duration: number, vector: Vector3Type): void;
4070
+ export function decode(input: _m0.Reader | Uint8Array, length?: number): Perspective;
3986
4071
  // (undocumented)
3987
- applyForceToPlayerForDuration(source: Entity, duration: number, direction: Vector3Type, magnitude: number): void;
3988
- applyImpulseToPlayer(vector: Vector3Type): void;
3989
- // (undocumented)
3990
- applyImpulseToPlayer(direction: Vector3Type, magnitude: number): void;
3991
- applyKnockbackToPlayer(fromPosition: Vector3Type, magnitude: number, radius?: number, falloff?: KnockbackFalloff): void;
3992
- applyRepulsionForceToPlayer(source: Entity, fromPosition: Vector3Type, magnitude: number, radius?: number, falloff?: KnockbackFalloff): void;
3993
- removeForceFromPlayer(source: Entity): void;
4072
+ export function encode(message: Perspective, writer?: _m0.Writer): _m0.Writer;
3994
4073
  }
3995
4074
 
3996
4075
  // @public
@@ -4038,50 +4117,65 @@ export const PointerEventsResult: GrowOnlyValueSetComponentDefinition<PBPointerE
4038
4117
 
4039
4118
  // @public (undocumented)
4040
4119
  export interface PointerEventsSystem {
4120
+ onPointerDown(pointerData: {
4121
+ entity: Entity;
4122
+ optsList: EventSystemOptionsCallback[];
4123
+ }): void;
4041
4124
  onPointerDown(pointerData: {
4042
4125
  entity: Entity;
4043
4126
  opts?: Partial<EventSystemOptions>;
4044
4127
  }, cb: EventSystemCallback): void;
4045
4128
  // @deprecated (undocumented)
4046
4129
  onPointerDown(entity: Entity, cb: EventSystemCallback, opts?: Partial<EventSystemOptions>): void;
4047
- onPointerHoverEnter(pointerData: {
4130
+ onPointerDrag(pointerData: {
4048
4131
  entity: Entity;
4049
- opts?: Partial<EventSystemOptions>;
4050
- }, cb: EventSystemCallback): void;
4051
- onPointerHoverLeave(pointerData: {
4132
+ optsList: EventSystemOptionsCallback[];
4133
+ }): void;
4134
+ onPointerDrag(pointerData: {
4052
4135
  entity: Entity;
4053
4136
  opts?: Partial<EventSystemOptions>;
4054
4137
  }, cb: EventSystemCallback): void;
4055
- onPointerUp(pointerData: {
4138
+ onPointerDragEnd(pointerData: {
4139
+ entity: Entity;
4140
+ optsList: EventSystemOptionsCallback[];
4141
+ }): void;
4142
+ onPointerDragEnd(pointerData: {
4056
4143
  entity: Entity;
4057
4144
  opts?: Partial<EventSystemOptions>;
4058
4145
  }, cb: EventSystemCallback): void;
4059
- // @deprecated (undocumented)
4060
- onPointerUp(entity: Entity, cb: EventSystemCallback, opts?: Partial<EventSystemOptions>): void;
4061
- onProximityDown(pointerData: {
4146
+ onPointerDragLocked(pointerData: {
4147
+ entity: Entity;
4148
+ optsList: EventSystemOptionsCallback[];
4149
+ }): void;
4150
+ onPointerDragLocked(pointerData: {
4062
4151
  entity: Entity;
4063
4152
  opts?: Partial<EventSystemOptions>;
4064
4153
  }, cb: EventSystemCallback): void;
4065
- onProximityEnter(pointerData: {
4154
+ onPointerHoverEnter(pointerData: {
4066
4155
  entity: Entity;
4067
4156
  opts?: Partial<EventSystemOptions>;
4068
4157
  }, cb: EventSystemCallback): void;
4069
- onProximityLeave(pointerData: {
4158
+ onPointerHoverLeave(pointerData: {
4070
4159
  entity: Entity;
4071
4160
  opts?: Partial<EventSystemOptions>;
4072
4161
  }, cb: EventSystemCallback): void;
4073
- onProximityUp(pointerData: {
4162
+ onPointerUp(pointerData: {
4163
+ entity: Entity;
4164
+ optsList: EventSystemOptionsCallback[];
4165
+ }): void;
4166
+ onPointerUp(pointerData: {
4074
4167
  entity: Entity;
4075
4168
  opts?: Partial<EventSystemOptions>;
4076
4169
  }, cb: EventSystemCallback): void;
4170
+ // @deprecated (undocumented)
4171
+ onPointerUp(entity: Entity, cb: EventSystemCallback, opts?: Partial<EventSystemOptions>): void;
4077
4172
  removeOnPointerDown(entity: Entity): void;
4173
+ removeOnPointerDrag(entity: Entity): void;
4174
+ removeOnPointerDragEnd(entity: Entity): void;
4175
+ removeOnPointerDragLocked(entity: Entity): void;
4078
4176
  removeOnPointerHoverEnter(entity: Entity): void;
4079
4177
  removeOnPointerHoverLeave(entity: Entity): void;
4080
4178
  removeOnPointerUp(entity: Entity): void;
4081
- removeOnProximityDown(entity: Entity): void;
4082
- removeOnProximityEnter(entity: Entity): void;
4083
- removeOnProximityLeave(entity: Entity): void;
4084
- removeOnProximityUp(entity: Entity): void;
4085
4179
  }
4086
4180
 
4087
4181
  // @public
@@ -4092,13 +4186,15 @@ export const enum PointerEventType {
4092
4186
  // (undocumented)
4093
4187
  PET_DOWN = 1,
4094
4188
  // (undocumented)
4095
- PET_HOVER_ENTER = 2,
4189
+ PET_DRAG = 5,
4096
4190
  // (undocumented)
4097
- PET_HOVER_LEAVE = 3,
4191
+ PET_DRAG_END = 6,
4098
4192
  // (undocumented)
4099
- PET_PROXIMITY_ENTER = 4,
4193
+ PET_DRAG_LOCKED = 4,
4100
4194
  // (undocumented)
4101
- PET_PROXIMITY_LEAVE = 5,
4195
+ PET_HOVER_ENTER = 2,
4196
+ // (undocumented)
4197
+ PET_HOVER_LEAVE = 3,
4102
4198
  // (undocumented)
4103
4199
  PET_UP = 0
4104
4200
  }
@@ -4120,7 +4216,13 @@ export const PointerLock: LastWriteWinElementSetComponentDefinition<PBPointerLoc
4120
4216
  // @public (undocumented)
4121
4217
  export const enum PointerType {
4122
4218
  POT_MOUSE = 1,
4123
- 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
4124
4226
  }
4125
4227
 
4126
4228
  // @public
@@ -4311,6 +4413,12 @@ export const enum RaycastQueryType {
4311
4413
  // @public (undocumented)
4312
4414
  export const RaycastResult: LastWriteWinElementSetComponentDefinition<PBRaycastResult>;
4313
4415
 
4416
+ // @public (undocumented)
4417
+ export const enum RaycastShape {
4418
+ RS_AVATAR = 1,
4419
+ RS_RAY = 0
4420
+ }
4421
+
4314
4422
  // @public (undocumented)
4315
4423
  export interface RaycastSystem {
4316
4424
  globalDirectionOptions(options?: Partial<GlobalDirectionRaycastOptions>): RaycastSystemOptions;
@@ -4365,6 +4473,8 @@ export interface ReactBasedUiSystem {
4365
4473
  addUiRenderer(entity: Entity, ui: UiComponent, options?: UiRendererOptions): void;
4366
4474
  destroy(): void;
4367
4475
  removeUiRenderer(entity: Entity): void;
4476
+ // @deprecated
4477
+ setTextureRenderer(entity: Entity, ui: UiComponent): void;
4368
4478
  setUiRenderer(ui: UiComponent, options?: UiRendererOptions): void;
4369
4479
  }
4370
4480
 
@@ -4400,7 +4510,7 @@ export namespace ReactEcs {
4400
4510
  useEffect: EffectHook;
4401
4511
  const // (undocumented)
4402
4512
  useState: StateHook;
4403
- export {};
4513
+ {};
4404
4514
  }
4405
4515
 
4406
4516
  // Warning: (tsdoc-at-sign-in-word) The "@" character looks like part of a TSDoc tag; use a backslash to escape it
@@ -4530,9 +4640,6 @@ export namespace RotateContinuous {
4530
4640
  export function encode(message: RotateContinuous, writer?: _m0.Writer): _m0.Writer;
4531
4641
  }
4532
4642
 
4533
- // @public
4534
- export function rotateVectorByQuaternion(v: Vector3Type, q: QuaternionType): Vector3Type;
4535
-
4536
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)
4537
4644
  //
4538
4645
  // @public (undocumented)
@@ -4667,13 +4774,42 @@ export namespace Schemas {
4667
4774
  }) => void;
4668
4775
  }
4669
4776
 
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
+ }
4796
+
4670
4797
  // @public
4671
- export function setGlobalPolyfill<T>(key: string, value: T): void;
4798
+ export type ScrollVisibleType = 'horizontal' | 'vertical' | 'both' | 'hidden';
4672
4799
 
4673
4800
  // @public
4674
- export interface SetMoveRotateScaleParams extends MoveRotateScaleModeParams {
4675
- duration: number;
4676
- easingFunction?: EasingFunction;
4801
+ export function setGlobalPolyfill<T>(key: string, value: T): void;
4802
+
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
4677
4813
  }
4678
4814
 
4679
4815
  // @public (undocumented)
@@ -4789,6 +4925,9 @@ export namespace Texture {
4789
4925
  export function encode(message: Texture, writer?: _m0.Writer): _m0.Writer;
4790
4926
  }
4791
4927
 
4928
+ // @public (undocumented)
4929
+ export const TextureCamera: LastWriteWinElementSetComponentDefinition<PBTextureCamera>;
4930
+
4792
4931
  // @public (undocumented)
4793
4932
  export const enum TextureFilterMode {
4794
4933
  // (undocumented)
@@ -4868,6 +5007,9 @@ export interface TextureUnion {
4868
5007
  } | {
4869
5008
  $case: "videoTexture";
4870
5009
  videoTexture: VideoTexture;
5010
+ } | {
5011
+ $case: "uiTexture";
5012
+ uiTexture: UiCanvasTexture;
4871
5013
  } | undefined;
4872
5014
  }
4873
5015
 
@@ -4946,7 +5088,6 @@ export interface TransformComponentExtended extends TransformComponent {
4946
5088
  create(entity: Entity, val?: TransformTypeWithOptionals): TransformType;
4947
5089
  // (undocumented)
4948
5090
  createOrReplace(entity: Entity, val?: TransformTypeWithOptionals): TransformType;
4949
- localToWorldDirection(entity: Entity, localDirection: Vector3Type): Vector3Type;
4950
5091
  }
4951
5092
 
4952
5093
  // @public (undocumented)
@@ -5048,7 +5189,6 @@ export interface TweenComponentDefinitionExtended extends LastWriteWinElementSet
5048
5189
  Mode: TweenHelper;
5049
5190
  setMove(entity: Entity, start: PBVector3, end: PBVector3, duration: number, easingFunction?: EasingFunction): void;
5050
5191
  setMoveContinuous(entity: Entity, direction: PBVector3, speed: number, duration?: number): void;
5051
- setMoveRotateScale(entity: Entity, params: SetMoveRotateScaleParams): void;
5052
5192
  setRotate(entity: Entity, start: PBQuaternion, end: PBQuaternion, duration: number, easingFunction?: EasingFunction): void;
5053
5193
  setRotateContinuous(entity: Entity, direction: PBQuaternion, speed: number, duration?: number): void;
5054
5194
  setScale(entity: Entity, start: PBVector3, end: PBVector3, duration: number, easingFunction?: EasingFunction): void;
@@ -5063,8 +5203,6 @@ export interface TweenHelper {
5063
5203
  // (undocumented)
5064
5204
  MoveContinuous: (move: MoveContinuous) => PBTween['mode'];
5065
5205
  // (undocumented)
5066
- MoveRotateScale: (params: MoveRotateScaleModeParams) => PBTween['mode'];
5067
- // (undocumented)
5068
5206
  Rotate: (rotate: Rotate) => PBTween['mode'];
5069
5207
  // (undocumented)
5070
5208
  RotateContinuous: (rotate: RotateContinuous) => PBTween['mode'];
@@ -5132,6 +5270,7 @@ export interface UiBackgroundProps {
5132
5270
  textureMode?: TextureMode;
5133
5271
  textureSlices?: BorderRect | undefined;
5134
5272
  uvs?: number[];
5273
+ videoTexture?: UiVideoTexture;
5135
5274
  }
5136
5275
 
5137
5276
  // @public
@@ -5140,9 +5279,28 @@ export interface UiButtonProps extends UiLabelProps, EntityPropTypes {
5140
5279
  variant?: 'primary' | 'secondary';
5141
5280
  }
5142
5281
 
5282
+ // @public (undocumented)
5283
+ export const UiCanvas: LastWriteWinElementSetComponentDefinition<PBUiCanvas>;
5284
+
5143
5285
  // @public (undocumented)
5144
5286
  export const UiCanvasInformation: LastWriteWinElementSetComponentDefinition<PBUiCanvasInformation>;
5145
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
+
5146
5304
  // @public (undocumented)
5147
5305
  export type UiComponent = () => ReactEcs.JSX.ReactNode;
5148
5306
 
@@ -5197,6 +5355,8 @@ export interface UiLabelProps {
5197
5355
  color?: PBColor4 | undefined;
5198
5356
  font?: UiFontType | undefined;
5199
5357
  fontSize?: ScaleUnit | undefined;
5358
+ outlineColor?: PBColor4 | undefined;
5359
+ outlineWidth?: number | undefined;
5200
5360
  textAlign?: TextAlignType | undefined;
5201
5361
  textWrap?: UiTextWrapType | undefined;
5202
5362
  value: string;
@@ -5211,6 +5371,9 @@ export type UiRendererOptions = {
5211
5371
  virtualHeight: number;
5212
5372
  };
5213
5373
 
5374
+ // @public (undocumented)
5375
+ export const UiScrollResult: LastWriteWinElementSetComponentDefinition<PBUiScrollResult>;
5376
+
5214
5377
  // @public (undocumented)
5215
5378
  export const UiText: LastWriteWinElementSetComponentDefinition<PBUiText>;
5216
5379
 
@@ -5239,6 +5402,7 @@ export interface UiTransformProps {
5239
5402
  // (undocumented)
5240
5403
  borderWidth?: Partial<Position> | PositionUnit;
5241
5404
  display?: DisplayType;
5405
+ elementId?: string;
5242
5406
  flex?: number;
5243
5407
  flexBasis?: number;
5244
5408
  flexDirection?: FlexDirectionType;
@@ -5258,10 +5422,22 @@ export interface UiTransformProps {
5258
5422
  pointerFilter?: PointerFilterType;
5259
5423
  position?: Partial<Position> | PositionShorthand;
5260
5424
  positionType?: PositionType;
5425
+ scrollPosition?: PBVector2 | string;
5426
+ scrollVisible?: ScrollVisibleType;
5261
5427
  width?: PositionUnit | 'auto';
5262
5428
  zIndex?: number;
5263
5429
  }
5264
5430
 
5431
+ // @public
5432
+ export interface UiVideoTexture {
5433
+ // (undocumented)
5434
+ filterMode?: TextureFilterType;
5435
+ // (undocumented)
5436
+ videoPlayerEntity: Entity;
5437
+ // (undocumented)
5438
+ wrapMode?: TextureWrapType;
5439
+ }
5440
+
5265
5441
  // @public (undocumented)
5266
5442
  export type Unpacked<T> = T extends (infer U)[] ? U : T;
5267
5443