@dcl/playground-assets 7.20.1-21915113771.commit-e132905 → 7.20.1-21975617794.commit-7189140

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.
@@ -94,6 +94,29 @@ export interface AudioStreamComponentDefinitionExtended extends LastWriteWinElem
94
94
  getAudioState(entity: Entity): PBAudioEvent | undefined;
95
95
  }
96
96
 
97
+ // @public (undocumented)
98
+ export type AuthoritativePutComponentMessage = CrdtMessageHeader & AuthoritativePutComponentMessageBody;
99
+
100
+ // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
101
+ //
102
+ // @public
103
+ export type AuthoritativePutComponentMessageBody = {
104
+ type: CrdtMessageType.AUTHORITATIVE_PUT_COMPONENT;
105
+ entityId: Entity;
106
+ componentId: number;
107
+ timestamp: number;
108
+ data: Uint8Array;
109
+ };
110
+
111
+ // @public (undocumented)
112
+ export namespace AuthoritativePutComponentOperation {
113
+ const // (undocumented)
114
+ MESSAGE_HEADER_LENGTH = 16;
115
+ // (undocumented)
116
+ export function read(buf: ByteBuffer): AuthoritativePutComponentMessage | null;
117
+ export function write(entity: Entity, timestamp: number, componentId: number, data: Uint8Array, buf: ByteBuffer): void;
118
+ }
119
+
97
120
  // @public (undocumented)
98
121
  export const enum AvatarAnchorPointType {
99
122
  // (undocumented)
@@ -156,32 +179,12 @@ export const AvatarAttach: LastWriteWinElementSetComponentDefinition<PBAvatarAtt
156
179
  // @public (undocumented)
157
180
  export const AvatarBase: LastWriteWinElementSetComponentDefinition<PBAvatarBase>;
158
181
 
159
- // @public (undocumented)
160
- export const enum AvatarControlType {
161
- CCT_NONE = 0,
162
- CCT_RELATIVE = 1,
163
- CCT_TANK = 2
164
- }
165
-
166
182
  // @public (undocumented)
167
183
  export const AvatarEmoteCommand: GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>;
168
184
 
169
185
  // @public (undocumented)
170
186
  export const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
171
187
 
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
-
185
188
  // @public (undocumented)
186
189
  export const AvatarModifierArea: LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>;
187
190
 
@@ -191,41 +194,9 @@ export const enum AvatarModifierType {
191
194
  AMT_HIDE_AVATARS = 0
192
195
  }
193
196
 
194
- // @public (undocumented)
195
- export interface AvatarMovementSettings {
196
- allowWeightedMovement?: boolean | undefined;
197
- // (undocumented)
198
- controlMode?: AvatarControlType | undefined;
199
- friction?: number | undefined;
200
- gravity?: number | undefined;
201
- jumpHeight?: number | undefined;
202
- maxFallSpeed?: number | undefined;
203
- runSpeed?: number | undefined;
204
- turnSpeed?: number | undefined;
205
- walkSpeed?: number | undefined;
206
- }
207
-
208
- // @public (undocumented)
209
- export namespace AvatarMovementSettings {
210
- // (undocumented)
211
- export function decode(input: _m0.Reader | Uint8Array, length?: number): AvatarMovementSettings;
212
- // (undocumented)
213
- export function encode(message: AvatarMovementSettings, writer?: _m0.Writer): _m0.Writer;
214
- }
215
-
216
197
  // @public (undocumented)
217
198
  export const AvatarShape: LastWriteWinElementSetComponentDefinition<PBAvatarShape>;
218
199
 
219
- // @public (undocumented)
220
- export type AvatarShapeComponentDefinitionExtended = LastWriteWinElementSetComponentDefinition<AvatarShapeType>;
221
-
222
- // 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)
223
- //
224
- // @public (undocumented)
225
- export type AvatarShapeType = Omit<PBAvatarShape, 'forceRender'> & {
226
- forceRender?: string[] | undefined;
227
- };
228
-
229
200
  // @public (undocumented)
230
201
  export interface AvatarTexture {
231
202
  filterMode?: TextureFilterMode | undefined;
@@ -260,12 +231,20 @@ export interface BaseComponent<T> {
260
231
  dumpCrdtStateToBuffer(buffer: ByteBuffer, filterEntity?: (entity: Entity) => boolean): void;
261
232
  entityDeleted(entity: Entity, markAsDirty: boolean): void;
262
233
  get(entity: Entity): any;
234
+ getCrdtState(entity: Entity): {
235
+ data: Uint8Array;
236
+ timestamp: number;
237
+ } | null;
263
238
  getCrdtUpdates(): Iterable<CrdtMessageBody>;
264
239
  has(entity: Entity): boolean;
265
240
  onChange(entity: Entity, cb: (value: T | undefined) => void): void;
266
241
  // (undocumented)
267
242
  readonly schema: ISchema<T>;
268
243
  updateFromCrdt(body: CrdtMessageBody): [null | ConflictResolutionMessage, T | undefined];
244
+ // (undocumented)
245
+ validateBeforeChange(entity: Entity, cb: ValidateCallback<T>): void;
246
+ // (undocumented)
247
+ validateBeforeChange(cb: ValidateCallback<T>): void;
269
248
  }
270
249
 
271
250
  // @public (undocumented)
@@ -428,15 +407,9 @@ export interface ByteBuffer {
428
407
  writeUtf8String(value: string, writeLength?: boolean): void;
429
408
  }
430
409
 
431
- // @public @deprecated
410
+ // @public
432
411
  export type Callback = () => void;
433
412
 
434
- // @public (undocumented)
435
- export const CameraLayer: LastWriteWinElementSetComponentDefinition<PBCameraLayer>;
436
-
437
- // @public (undocumented)
438
- export const CameraLayers: LastWriteWinElementSetComponentDefinition<PBCameraLayers>;
439
-
440
413
  // @public (undocumented)
441
414
  export const CameraMode: LastWriteWinElementSetComponentDefinition<PBCameraMode>;
442
415
 
@@ -485,29 +458,6 @@ export const enum CameraType {
485
458
  // @public (undocumented)
486
459
  export type Children = ReactEcs.JSX.ReactNode;
487
460
 
488
- // @public (undocumented)
489
- export interface CinematicSettings {
490
- // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
491
- // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
492
- // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
493
- // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
494
- allowManualRotation?: boolean | undefined;
495
- cameraEntity: number;
496
- pitchRange?: number | undefined;
497
- rollRange?: number | undefined;
498
- yawRange?: number | undefined;
499
- zoomMax?: number | undefined;
500
- zoomMin?: number | undefined;
501
- }
502
-
503
- // @public (undocumented)
504
- export namespace CinematicSettings {
505
- // (undocumented)
506
- export function decode(input: _m0.Reader | Uint8Array, length?: number): CinematicSettings;
507
- // (undocumented)
508
- export function encode(message: CinematicSettings, writer?: _m0.Writer): _m0.Writer;
509
- }
510
-
511
461
  // @public (undocumented)
512
462
  export const enum ColliderLayer {
513
463
  // (undocumented)
@@ -732,21 +682,15 @@ export const componentDefinitionByName: {
732
682
  "core::AvatarBase": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarBase>>;
733
683
  "core::AvatarEmoteCommand": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>>;
734
684
  "core::AvatarEquippedData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>>;
735
- "core::AvatarLocomotionSettings": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>>;
736
685
  "core::AvatarModifierArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>>;
737
686
  "core::AvatarShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarShape>>;
738
687
  "core::Billboard": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBBillboard>>;
739
- "core::CameraLayer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraLayer>>;
740
- "core::CameraLayers": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraLayers>>;
741
688
  "core::CameraMode": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraMode>>;
742
689
  "core::CameraModeArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraModeArea>>;
743
690
  "core::EngineInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBEngineInfo>>;
744
- "core::GlobalLight": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGlobalLight>>;
745
691
  "core::GltfContainer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainer>>;
746
692
  "core::GltfContainerLoadingState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>>;
747
- "core::GltfNode": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNode>>;
748
693
  "core::GltfNodeModifiers": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNodeModifiers>>;
749
- "core::GltfNodeState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNodeState>>;
750
694
  "core::InputModifier": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBInputModifier>>;
751
695
  "core::LightSource": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBLightSource>>;
752
696
  "core::MainCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMainCamera>>;
@@ -764,20 +708,17 @@ export const componentDefinitionByName: {
764
708
  "core::RealmInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRealmInfo>>;
765
709
  "core::SkyboxTime": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBSkyboxTime>>;
766
710
  "core::TextShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTextShape>>;
767
- "core::TextureCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTextureCamera>>;
768
711
  "core::TriggerArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTriggerArea>>;
769
712
  "core::TriggerAreaResult": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBTriggerAreaResult>>;
770
713
  "core::Tween": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTween>>;
771
714
  "core::TweenSequence": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTweenSequence>>;
772
715
  "core::TweenState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTweenState>>;
773
716
  "core::UiBackground": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiBackground>>;
774
- "core::UiCanvas": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiCanvas>>;
775
717
  "core::UiCanvasInformation": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiCanvasInformation>>;
776
718
  "core::UiDropdown": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiDropdown>>;
777
719
  "core::UiDropdownResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiDropdownResult>>;
778
720
  "core::UiInput": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiInput>>;
779
721
  "core::UiInputResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiInputResult>>;
780
- "core::UiScrollResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiScrollResult>>;
781
722
  "core::UiText": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiText>>;
782
723
  "core::UiTransform": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiTransform>>;
783
724
  "core::VideoEvent": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBVideoEvent>>;
@@ -914,10 +855,10 @@ export type Coords = {
914
855
  export const CRDT_MESSAGE_HEADER_LENGTH = 8;
915
856
 
916
857
  // @public (undocumented)
917
- export type CrdtMessage = PutComponentMessage | DeleteComponentMessage | AppendValueMessage | DeleteEntityMessage | PutNetworkComponentMessage | DeleteComponentNetworkMessage | DeleteEntityNetworkMessage;
858
+ export type CrdtMessage = PutComponentMessage | AuthoritativePutComponentMessage | DeleteComponentMessage | AppendValueMessage | DeleteEntityMessage | PutNetworkComponentMessage | DeleteComponentNetworkMessage | DeleteEntityNetworkMessage;
918
859
 
919
860
  // @public (undocumented)
920
- export type CrdtMessageBody = PutComponentMessageBody | DeleteComponentMessageBody | DeleteEntityMessageBody | AppendValueMessageBody | CrdtNetworkMessageBody;
861
+ export type CrdtMessageBody = PutComponentMessageBody | AuthoritativePutComponentMessageBody | DeleteComponentMessageBody | DeleteEntityMessageBody | AppendValueMessageBody | CrdtNetworkMessageBody;
921
862
 
922
863
  // @public
923
864
  export type CrdtMessageHeader = {
@@ -938,6 +879,8 @@ export enum CrdtMessageType {
938
879
  // (undocumented)
939
880
  APPEND_VALUE = 4,
940
881
  // (undocumented)
882
+ AUTHORITATIVE_PUT_COMPONENT = 8,
883
+ // (undocumented)
941
884
  DELETE_COMPONENT = 2,
942
885
  // (undocumented)
943
886
  DELETE_COMPONENT_NETWORK = 6,
@@ -946,7 +889,7 @@ export enum CrdtMessageType {
946
889
  // (undocumented)
947
890
  DELETE_ENTITY_NETWORK = 7,
948
891
  // (undocumented)
949
- MAX_MESSAGE_TYPE = 8,
892
+ MAX_MESSAGE_TYPE = 9,
950
893
  // (undocumented)
951
894
  PUT_COMPONENT = 1,
952
895
  // (undocumented)
@@ -958,6 +901,11 @@ export enum CrdtMessageType {
958
901
  // @public (undocumented)
959
902
  export type CrdtNetworkMessageBody = PutNetworkComponentMessageBody | DeleteComponentNetworkMessageBody | DeleteEntityNetworkMessageBody;
960
903
 
904
+ // Warning: (ae-missing-release-tag) "CreatedBy" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
905
+ //
906
+ // @public (undocumented)
907
+ export const CreatedBy: ICreatedBy;
908
+
961
909
  // @public (undocumented)
962
910
  export function createEntityContainer(opts?: {
963
911
  reservedStaticEntities: number;
@@ -1215,18 +1163,10 @@ export type EntityComponents = {
1215
1163
  uiBackground: PBUiBackground;
1216
1164
  uiInput: PBUiInput;
1217
1165
  uiDropdown: PBUiDropdown;
1218
- onMouseDown: EventSystemCallback;
1219
- onMouseUp: EventSystemCallback;
1220
- onMouseEnter: EventSystemCallback;
1221
- onMouseLeave: EventSystemCallback;
1222
- onMouseDrag: EventSystemCallback;
1223
- onMouseDragLocked: EventSystemCallback;
1224
- onMouseDragEnd: EventSystemCallback;
1225
- onInputDown: MultiCallback;
1226
- onInputUp: MultiCallback;
1227
- onInputDrag: MultiCallback;
1228
- onInputDragLocked: MultiCallback;
1229
- onInputDragEnd: MultiCallback;
1166
+ onMouseDown: Callback;
1167
+ onMouseUp: Callback;
1168
+ onMouseEnter: Callback;
1169
+ onMouseLeave: Callback;
1230
1170
  };
1231
1171
 
1232
1172
  // @public (undocumented)
@@ -1279,11 +1219,6 @@ export type EventSystemOptions = {
1279
1219
  maxPlayerDistance?: number;
1280
1220
  };
1281
1221
 
1282
- // @public (undocumented)
1283
- export type EventSystemOptionsCallback = EventSystemOptions & {
1284
- cb: EventSystemCallback;
1285
- };
1286
-
1287
1222
  // @public
1288
1223
  export type ExcludeUndefined<T> = {
1289
1224
  [P in keyof T]: undefined extends T[P] ? never : P;
@@ -1354,9 +1289,6 @@ export const getDefaultOpts: (opts?: Partial<EventSystemOptions>) => EventSystem
1354
1289
  // @public
1355
1290
  export function getEntitiesWithParent(engine: Pick<IEngine, 'getEntitiesWith' | 'defineComponentFromSchema'>, parent: Entity): Entity[];
1356
1291
 
1357
- // @public
1358
- export function getGlobal<T>(key: string): T | undefined;
1359
-
1360
1292
  // @public
1361
1293
  export function getWorldPosition(engine: WorldTransformEngine, entity: Entity): Vector3Type;
1362
1294
 
@@ -1375,9 +1307,6 @@ export type GlobalDirectionRaycastSystemOptions = {
1375
1307
  direction?: PBVector3;
1376
1308
  };
1377
1309
 
1378
- // @public (undocumented)
1379
- export const GlobalLight: LastWriteWinElementSetComponentDefinition<PBGlobalLight>;
1380
-
1381
1310
  // 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)
1382
1311
  //
1383
1312
  // @public (undocumented)
@@ -1396,25 +1325,9 @@ export const GltfContainer: LastWriteWinElementSetComponentDefinition<PBGltfCont
1396
1325
  // @public (undocumented)
1397
1326
  export const GltfContainerLoadingState: LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>;
1398
1327
 
1399
- // @public (undocumented)
1400
- export const GltfNode: LastWriteWinElementSetComponentDefinition<PBGltfNode>;
1401
-
1402
1328
  // @public (undocumented)
1403
1329
  export const GltfNodeModifiers: LastWriteWinElementSetComponentDefinition<PBGltfNodeModifiers>;
1404
1330
 
1405
- // @public (undocumented)
1406
- export const GltfNodeState: LastWriteWinElementSetComponentDefinition<PBGltfNodeState>;
1407
-
1408
- // @public (undocumented)
1409
- export const enum GltfNodeStateValue {
1410
- // (undocumented)
1411
- GNSV_FAILED = 1,
1412
- // (undocumented)
1413
- GNSV_PENDING = 0,
1414
- // (undocumented)
1415
- GNSV_READY = 2
1416
- }
1417
-
1418
1331
  // @public (undocumented)
1419
1332
  export interface GrowOnlyValueSetComponentDefinition<T> extends BaseComponent<T> {
1420
1333
  addValue(entity: Entity, val: DeepReadonly<T>): DeepReadonlySet<T>;
@@ -1428,6 +1341,19 @@ export interface GrowOnlyValueSetComponentDefinition<T> extends BaseComponent<T>
1428
1341
  // @public (undocumented)
1429
1342
  export type GSetComponentGetter<T extends GrowOnlyValueSetComponentDefinition<any>> = (engine: Pick<IEngine, 'defineValueSetComponentFromSchema'>) => T;
1430
1343
 
1344
+ // Warning: (ae-missing-release-tag) "ICreatedBy" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
1345
+ //
1346
+ // @public (undocumented)
1347
+ export type ICreatedBy = LastWriteWinElementSetComponentDefinition<ICreatedByType>;
1348
+
1349
+ // Warning: (ae-missing-release-tag) "ICreatedByType" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
1350
+ //
1351
+ // @public (undocumented)
1352
+ export interface ICreatedByType {
1353
+ // (undocumented)
1354
+ address: string;
1355
+ }
1356
+
1431
1357
  // @public (undocumented)
1432
1358
  export interface IEngine {
1433
1359
  addEntity(): Entity;
@@ -1539,7 +1465,6 @@ export type IInputSystem = {
1539
1465
  isTriggered: (inputAction: InputAction, pointerEventType: PointerEventType, entity?: Entity) => boolean;
1540
1466
  isPressed: (inputAction: InputAction) => boolean;
1541
1467
  getInputCommand: (inputAction: InputAction, pointerEventType: PointerEventType, entity?: Entity) => PBPointerEventsResult | null;
1542
- getInputCommands: () => Generator<PBPointerEventsResult>;
1543
1468
  };
1544
1469
 
1545
1470
  // @public
@@ -1668,6 +1593,20 @@ export type InstanceCompositeOptions = {
1668
1593
  alreadyRequestedSrc?: Set<string>;
1669
1594
  };
1670
1595
 
1596
+ // Warning: (ae-missing-release-tag) "InternalBaseComponent" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
1597
+ //
1598
+ // @public
1599
+ export interface InternalBaseComponent<T> extends BaseComponent<T> {
1600
+ __dry_run_updateFromCrdt(body: CrdtMessageBody): ProcessMessageResultType;
1601
+ // (undocumented)
1602
+ __onChangeCallbacks(entity: Entity, value: T): void;
1603
+ // (undocumented)
1604
+ __run_validateBeforeChange(entity: Entity, newValue: T | undefined, senderAddress: string, createdBy: string): boolean;
1605
+ // (undocumented)
1606
+ dirtyIterator(): Iterable<Entity>;
1607
+ iterator(): Iterable<[Entity, any]>;
1608
+ }
1609
+
1671
1610
  // @public (undocumented)
1672
1611
  export interface ISchema<T = any> {
1673
1612
  // (undocumented)
@@ -1789,18 +1728,10 @@ export interface LightSourceHelper {
1789
1728
 
1790
1729
  // @public
1791
1730
  export type Listeners = {
1792
- onMouseDown?: EventSystemCallback;
1793
- onMouseUp?: EventSystemCallback;
1794
- onMouseEnter?: EventSystemCallback;
1795
- onMouseLeave?: EventSystemCallback;
1796
- onMouseDrag?: EventSystemCallback;
1797
- onMouseDragLocked?: EventSystemCallback;
1798
- onMouseDragEnd?: EventSystemCallback;
1799
- onInputDown?: MultiCallback;
1800
- onInputUp?: MultiCallback;
1801
- onInputDrag?: MultiCallback;
1802
- onInputDragLocked?: MultiCallback;
1803
- onInputDragEnd?: MultiCallback;
1731
+ onMouseDown?: Callback;
1732
+ onMouseUp?: Callback;
1733
+ onMouseEnter?: Callback;
1734
+ onMouseLeave?: Callback;
1804
1735
  };
1805
1736
 
1806
1737
  // @public (undocumented)
@@ -2044,7 +1975,6 @@ export const MeshCollider: MeshColliderComponentDefinitionExtended;
2044
1975
  export interface MeshColliderComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBMeshCollider> {
2045
1976
  setBox(entity: Entity, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
2046
1977
  setCylinder(entity: Entity, radiusBottom?: number, radiusTop?: number, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
2047
- setGltfMesh(entity: Entity, source: string, meshName: string, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
2048
1978
  setPlane(entity: Entity, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
2049
1979
  setSphere(entity: Entity, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
2050
1980
  }
@@ -2058,7 +1988,6 @@ export const MeshRenderer: MeshRendererComponentDefinitionExtended;
2058
1988
  export interface MeshRendererComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBMeshRenderer> {
2059
1989
  setBox(entity: Entity, uvs?: number[]): void;
2060
1990
  setCylinder(entity: Entity, radiusBottom?: number, radiusTop?: number): void;
2061
- setGltfMesh(entity: Entity, source: string, meshName: string): void;
2062
1991
  setPlane(entity: Entity, uvs?: number[]): void;
2063
1992
  setSphere(entity: Entity): void;
2064
1993
  }
@@ -2106,20 +2035,6 @@ export namespace MoveContinuous {
2106
2035
  export function encode(message: MoveContinuous, writer?: _m0.Writer): _m0.Writer;
2107
2036
  }
2108
2037
 
2109
- // Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
2110
- // Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
2111
- // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
2112
- // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
2113
- // Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
2114
- // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
2115
- // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
2116
- // Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
2117
- // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
2118
- // Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
2119
- //
2120
- // @public
2121
- export type MultiCallback = Partial<Record<InputAction, EventSystemCallback>>;
2122
-
2123
2038
  // 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)
2124
2039
  //
2125
2040
  // @public (undocumented)
@@ -2326,19 +2241,6 @@ export const onVideoEvent: Observable<{
2326
2241
  totalVideoLength: number;
2327
2242
  }>;
2328
2243
 
2329
- // @public (undocumented)
2330
- export interface Orthographic {
2331
- verticalRange?: number | undefined;
2332
- }
2333
-
2334
- // @public (undocumented)
2335
- export namespace Orthographic {
2336
- // (undocumented)
2337
- export function decode(input: _m0.Reader | Uint8Array, length?: number): Orthographic;
2338
- // (undocumented)
2339
- export function encode(message: Orthographic, writer?: _m0.Writer): _m0.Writer;
2340
- }
2341
-
2342
2244
  // @public
2343
2245
  export type OverflowType = 'hidden' | 'scroll' | 'visible';
2344
2246
 
@@ -2511,7 +2413,6 @@ export namespace PBAvatarEmoteCommand {
2511
2413
  export interface PBAvatarEquippedData {
2512
2414
  // (undocumented)
2513
2415
  emoteUrns: string[];
2514
- forceRender: string[];
2515
2416
  // (undocumented)
2516
2417
  wearableUrns: string[];
2517
2418
  }
@@ -2524,32 +2425,11 @@ export namespace PBAvatarEquippedData {
2524
2425
  export function encode(message: PBAvatarEquippedData, writer?: _m0.Writer): _m0.Writer;
2525
2426
  }
2526
2427
 
2527
- // @public (undocumented)
2528
- export interface PBAvatarLocomotionSettings {
2529
- hardLandingCooldown?: number | undefined;
2530
- jogSpeed?: number | undefined;
2531
- jumpHeight?: number | undefined;
2532
- runJumpHeight?: number | undefined;
2533
- runSpeed?: number | undefined;
2534
- walkSpeed?: number | undefined;
2535
- }
2536
-
2537
- // @public (undocumented)
2538
- export namespace PBAvatarLocomotionSettings {
2539
- // (undocumented)
2540
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAvatarLocomotionSettings;
2541
- // (undocumented)
2542
- export function encode(message: PBAvatarLocomotionSettings, writer?: _m0.Writer): _m0.Writer;
2543
- }
2544
-
2545
2428
  // @public (undocumented)
2546
2429
  export interface PBAvatarModifierArea {
2547
2430
  area: PBVector3 | undefined;
2548
2431
  excludeIds: string[];
2549
2432
  modifiers: AvatarModifierType[];
2550
- // (undocumented)
2551
- movementSettings?: AvatarMovementSettings | undefined;
2552
- useColliderRange?: boolean | undefined;
2553
2433
  }
2554
2434
 
2555
2435
  // @public (undocumented)
@@ -2567,7 +2447,6 @@ export interface PBAvatarShape {
2567
2447
  expressionTriggerId?: string | undefined;
2568
2448
  expressionTriggerTimestamp?: number | undefined;
2569
2449
  eyeColor?: PBColor3 | undefined;
2570
- forceRender: string[];
2571
2450
  hairColor?: PBColor3 | undefined;
2572
2451
  id: string;
2573
2452
  name?: string | undefined;
@@ -2598,42 +2477,6 @@ export namespace PBBillboard {
2598
2477
  export function encode(message: PBBillboard, writer?: _m0.Writer): _m0.Writer;
2599
2478
  }
2600
2479
 
2601
- // @public (undocumented)
2602
- export interface PBCameraLayer {
2603
- // (undocumented)
2604
- ambientBrightnessOverride?: number | undefined;
2605
- // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
2606
- ambientColorOverride?: PBColor3 | undefined;
2607
- directionalLight?: boolean | undefined;
2608
- // Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
2609
- layer: number;
2610
- showAvatars?: boolean | undefined;
2611
- showFog?: boolean | undefined;
2612
- showSkybox?: boolean | undefined;
2613
- }
2614
-
2615
- // @public (undocumented)
2616
- export namespace PBCameraLayer {
2617
- // (undocumented)
2618
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBCameraLayer;
2619
- // (undocumented)
2620
- export function encode(message: PBCameraLayer, writer?: _m0.Writer): _m0.Writer;
2621
- }
2622
-
2623
- // @public (undocumented)
2624
- export interface PBCameraLayers {
2625
- // (undocumented)
2626
- layers: number[];
2627
- }
2628
-
2629
- // @public (undocumented)
2630
- export namespace PBCameraLayers {
2631
- // (undocumented)
2632
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBCameraLayers;
2633
- // (undocumented)
2634
- export function encode(message: PBCameraLayers, writer?: _m0.Writer): _m0.Writer;
2635
- }
2636
-
2637
2480
  // @public (undocumented)
2638
2481
  export interface PBCameraMode {
2639
2482
  mode: CameraType;
@@ -2650,10 +2493,7 @@ export namespace PBCameraMode {
2650
2493
  // @public (undocumented)
2651
2494
  export interface PBCameraModeArea {
2652
2495
  area: PBVector3 | undefined;
2653
- // (undocumented)
2654
- cinematicSettings?: CinematicSettings | undefined;
2655
2496
  mode: CameraType;
2656
- useColliderRange?: boolean | undefined;
2657
2497
  }
2658
2498
 
2659
2499
  // @public (undocumented)
@@ -2717,21 +2557,6 @@ export namespace PBEngineInfo {
2717
2557
  export function encode(message: PBEngineInfo, writer?: _m0.Writer): _m0.Writer;
2718
2558
  }
2719
2559
 
2720
- // @public (undocumented)
2721
- export interface PBGlobalLight {
2722
- ambientBrightness?: number | undefined;
2723
- ambientColor?: PBColor3 | undefined;
2724
- direction?: PBVector3 | undefined;
2725
- }
2726
-
2727
- // @public (undocumented)
2728
- export namespace PBGlobalLight {
2729
- // (undocumented)
2730
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGlobalLight;
2731
- // (undocumented)
2732
- export function encode(message: PBGlobalLight, writer?: _m0.Writer): _m0.Writer;
2733
- }
2734
-
2735
2560
  // @public (undocumented)
2736
2561
  export interface PBGltfContainer {
2737
2562
  invisibleMeshesCollisionMask?: number | undefined;
@@ -2749,13 +2574,8 @@ export namespace PBGltfContainer {
2749
2574
 
2750
2575
  // @public (undocumented)
2751
2576
  export interface PBGltfContainerLoadingState {
2752
- animationNames: string[];
2753
2577
  // (undocumented)
2754
2578
  currentState: LoadingState;
2755
- materialNames: string[];
2756
- meshNames: string[];
2757
- nodePaths: string[];
2758
- skinNames: string[];
2759
2579
  }
2760
2580
 
2761
2581
  // @public (undocumented)
@@ -2766,19 +2586,6 @@ export namespace PBGltfContainerLoadingState {
2766
2586
  export function encode(message: PBGltfContainerLoadingState, writer?: _m0.Writer): _m0.Writer;
2767
2587
  }
2768
2588
 
2769
- // @public (undocumented)
2770
- export interface PBGltfNode {
2771
- path: string;
2772
- }
2773
-
2774
- // @public (undocumented)
2775
- export namespace PBGltfNode {
2776
- // (undocumented)
2777
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfNode;
2778
- // (undocumented)
2779
- export function encode(message: PBGltfNode, writer?: _m0.Writer): _m0.Writer;
2780
- }
2781
-
2782
2589
  // @public (undocumented)
2783
2590
  export interface PBGltfNodeModifiers {
2784
2591
  // (undocumented)
@@ -2808,22 +2615,6 @@ export namespace PBGltfNodeModifiers_GltfNodeModifier {
2808
2615
  export function encode(message: PBGltfNodeModifiers_GltfNodeModifier, writer?: _m0.Writer): _m0.Writer;
2809
2616
  }
2810
2617
 
2811
- // @public (undocumented)
2812
- export interface PBGltfNodeState {
2813
- // (undocumented)
2814
- error?: string | undefined;
2815
- // (undocumented)
2816
- state: GltfNodeStateValue;
2817
- }
2818
-
2819
- // @public (undocumented)
2820
- export namespace PBGltfNodeState {
2821
- // (undocumented)
2822
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfNodeState;
2823
- // (undocumented)
2824
- export function encode(message: PBGltfNodeState, writer?: _m0.Writer): _m0.Writer;
2825
- }
2826
-
2827
2618
  // @public (undocumented)
2828
2619
  export interface PBInputModifier {
2829
2620
  // (undocumented)
@@ -2932,7 +2723,6 @@ export namespace PBMainCamera {
2932
2723
 
2933
2724
  // @public (undocumented)
2934
2725
  export interface PBMaterial {
2935
- gltf?: PBMaterial_GltfMaterial | undefined;
2936
2726
  // (undocumented)
2937
2727
  material?: {
2938
2728
  $case: "unlit";
@@ -2951,22 +2741,6 @@ export namespace PBMaterial {
2951
2741
  export function encode(message: PBMaterial, writer?: _m0.Writer): _m0.Writer;
2952
2742
  }
2953
2743
 
2954
- // @public (undocumented)
2955
- export interface PBMaterial_GltfMaterial {
2956
- // (undocumented)
2957
- gltfSrc: string;
2958
- // (undocumented)
2959
- name: string;
2960
- }
2961
-
2962
- // @public (undocumented)
2963
- export namespace PBMaterial_GltfMaterial {
2964
- // (undocumented)
2965
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBMaterial_GltfMaterial;
2966
- // (undocumented)
2967
- export function encode(message: PBMaterial_GltfMaterial, writer?: _m0.Writer): _m0.Writer;
2968
- }
2969
-
2970
2744
  // @public (undocumented)
2971
2745
  export interface PBMaterial_PbrMaterial {
2972
2746
  albedoColor?: PBColor4 | undefined;
@@ -3028,9 +2802,6 @@ export interface PBMeshCollider {
3028
2802
  } | {
3029
2803
  $case: "plane";
3030
2804
  plane: PBMeshCollider_PlaneMesh;
3031
- } | {
3032
- $case: "gltf";
3033
- gltf: PBMeshCollider_GltfMesh;
3034
2805
  } | undefined;
3035
2806
  }
3036
2807
 
@@ -3068,20 +2839,6 @@ export namespace PBMeshCollider_CylinderMesh {
3068
2839
  export function encode(message: PBMeshCollider_CylinderMesh, writer?: _m0.Writer): _m0.Writer;
3069
2840
  }
3070
2841
 
3071
- // @public (undocumented)
3072
- export interface PBMeshCollider_GltfMesh {
3073
- gltfSrc: string;
3074
- name: string;
3075
- }
3076
-
3077
- // @public (undocumented)
3078
- export namespace PBMeshCollider_GltfMesh {
3079
- // (undocumented)
3080
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBMeshCollider_GltfMesh;
3081
- // (undocumented)
3082
- export function encode(message: PBMeshCollider_GltfMesh, writer?: _m0.Writer): _m0.Writer;
3083
- }
3084
-
3085
2842
  // @public (undocumented)
3086
2843
  export interface PBMeshCollider_PlaneMesh {
3087
2844
  }
@@ -3121,9 +2878,6 @@ export interface PBMeshRenderer {
3121
2878
  } | {
3122
2879
  $case: "plane";
3123
2880
  plane: PBMeshRenderer_PlaneMesh;
3124
- } | {
3125
- $case: "gltf";
3126
- gltf: PBMeshRenderer_GltfMesh;
3127
2881
  } | undefined;
3128
2882
  }
3129
2883
 
@@ -3162,20 +2916,6 @@ export namespace PBMeshRenderer_CylinderMesh {
3162
2916
  export function encode(message: PBMeshRenderer_CylinderMesh, writer?: _m0.Writer): _m0.Writer;
3163
2917
  }
3164
2918
 
3165
- // @public (undocumented)
3166
- export interface PBMeshRenderer_GltfMesh {
3167
- gltfSrc: string;
3168
- name: string;
3169
- }
3170
-
3171
- // @public (undocumented)
3172
- export namespace PBMeshRenderer_GltfMesh {
3173
- // (undocumented)
3174
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBMeshRenderer_GltfMesh;
3175
- // (undocumented)
3176
- export function encode(message: PBMeshRenderer_GltfMesh, writer?: _m0.Writer): _m0.Writer;
3177
- }
3178
-
3179
2919
  // @public (undocumented)
3180
2920
  export interface PBMeshRenderer_PlaneMesh {
3181
2921
  uvs: number[];
@@ -3478,32 +3218,6 @@ export namespace PBTextShape {
3478
3218
  export function encode(message: PBTextShape, writer?: _m0.Writer): _m0.Writer;
3479
3219
  }
3480
3220
 
3481
- // @public (undocumented)
3482
- export interface PBTextureCamera {
3483
- clearColor?: PBColor4 | undefined;
3484
- farPlane?: number | undefined;
3485
- height?: number | undefined;
3486
- layer?: number | undefined;
3487
- // (undocumented)
3488
- mode?: {
3489
- $case: "perspective";
3490
- perspective: Perspective;
3491
- } | {
3492
- $case: "orthographic";
3493
- orthographic: Orthographic;
3494
- } | undefined;
3495
- volume?: number | undefined;
3496
- width?: number | undefined;
3497
- }
3498
-
3499
- // @public (undocumented)
3500
- export namespace PBTextureCamera {
3501
- // (undocumented)
3502
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBTextureCamera;
3503
- // (undocumented)
3504
- export function encode(message: PBTextureCamera, writer?: _m0.Writer): _m0.Writer;
3505
- }
3506
-
3507
3221
  // @public (undocumented)
3508
3222
  export interface PBTriggerArea {
3509
3223
  collisionMask?: number | undefined;
@@ -3644,23 +3358,6 @@ export namespace PBUiBackground {
3644
3358
  export function encode(message: PBUiBackground, writer?: _m0.Writer): _m0.Writer;
3645
3359
  }
3646
3360
 
3647
- // @public (undocumented)
3648
- export interface PBUiCanvas {
3649
- color?: PBColor4 | undefined;
3650
- // (undocumented)
3651
- height: number;
3652
- // (undocumented)
3653
- width: number;
3654
- }
3655
-
3656
- // @public (undocumented)
3657
- export namespace PBUiCanvas {
3658
- // (undocumented)
3659
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBUiCanvas;
3660
- // (undocumented)
3661
- export function encode(message: PBUiCanvas, writer?: _m0.Writer): _m0.Writer;
3662
- }
3663
-
3664
3361
  // @public (undocumented)
3665
3362
  export interface PBUiCanvasInformation {
3666
3363
  devicePixelRatio: number;
@@ -3754,27 +3451,11 @@ export namespace PBUiInputResult {
3754
3451
  export function encode(message: PBUiInputResult, writer?: _m0.Writer): _m0.Writer;
3755
3452
  }
3756
3453
 
3757
- // @public (undocumented)
3758
- export interface PBUiScrollResult {
3759
- // (undocumented)
3760
- value: PBVector2 | undefined;
3761
- }
3762
-
3763
- // @public (undocumented)
3764
- export namespace PBUiScrollResult {
3765
- // (undocumented)
3766
- export function decode(input: _m0.Reader | Uint8Array, length?: number): PBUiScrollResult;
3767
- // (undocumented)
3768
- export function encode(message: PBUiScrollResult, writer?: _m0.Writer): _m0.Writer;
3769
- }
3770
-
3771
3454
  // @public (undocumented)
3772
3455
  export interface PBUiText {
3773
3456
  color?: PBColor4 | undefined;
3774
3457
  font?: Font | undefined;
3775
3458
  fontSize?: number | undefined;
3776
- outlineColor?: PBColor4 | undefined;
3777
- outlineWidth?: number | undefined;
3778
3459
  textAlign?: TextAlignMode | undefined;
3779
3460
  textWrap?: TextWrap | undefined;
3780
3461
  value: string;
@@ -3825,7 +3506,6 @@ export interface PBUiTransform {
3825
3506
  borderTopWidth?: number | undefined;
3826
3507
  borderTopWidthUnit?: YGUnit | undefined;
3827
3508
  display: YGDisplay;
3828
- elementId?: string | undefined;
3829
3509
  // (undocumented)
3830
3510
  flexBasis: number;
3831
3511
  flexBasisUnit: YGUnit;
@@ -3894,8 +3574,6 @@ export interface PBUiTransform {
3894
3574
  positionType: YGPositionType;
3895
3575
  // (undocumented)
3896
3576
  rightOf: number;
3897
- scrollPosition?: ScrollPositionValue | undefined;
3898
- scrollVisible?: ShowScrollBar | undefined;
3899
3577
  // (undocumented)
3900
3578
  width: number;
3901
3579
  widthUnit: YGUnit;
@@ -4015,19 +3693,6 @@ export namespace PBVisibilityComponent {
4015
3693
  export function encode(message: PBVisibilityComponent, writer?: _m0.Writer): _m0.Writer;
4016
3694
  }
4017
3695
 
4018
- // @public (undocumented)
4019
- export interface Perspective {
4020
- fieldOfView?: number | undefined;
4021
- }
4022
-
4023
- // @public (undocumented)
4024
- export namespace Perspective {
4025
- // (undocumented)
4026
- export function decode(input: _m0.Reader | Uint8Array, length?: number): Perspective;
4027
- // (undocumented)
4028
- export function encode(message: Perspective, writer?: _m0.Writer): _m0.Writer;
4029
- }
4030
-
4031
3696
  // @public
4032
3697
  export namespace Plane {
4033
3698
  // (undocumented)
@@ -4073,40 +3738,12 @@ export const PointerEventsResult: GrowOnlyValueSetComponentDefinition<PBPointerE
4073
3738
 
4074
3739
  // @public (undocumented)
4075
3740
  export interface PointerEventsSystem {
4076
- onPointerDown(pointerData: {
4077
- entity: Entity;
4078
- optsList: EventSystemOptionsCallback[];
4079
- }): void;
4080
3741
  onPointerDown(pointerData: {
4081
3742
  entity: Entity;
4082
3743
  opts?: Partial<EventSystemOptions>;
4083
3744
  }, cb: EventSystemCallback): void;
4084
3745
  // @deprecated (undocumented)
4085
3746
  onPointerDown(entity: Entity, cb: EventSystemCallback, opts?: Partial<EventSystemOptions>): void;
4086
- onPointerDrag(pointerData: {
4087
- entity: Entity;
4088
- optsList: EventSystemOptionsCallback[];
4089
- }): void;
4090
- onPointerDrag(pointerData: {
4091
- entity: Entity;
4092
- opts?: Partial<EventSystemOptions>;
4093
- }, cb: EventSystemCallback): void;
4094
- onPointerDragEnd(pointerData: {
4095
- entity: Entity;
4096
- optsList: EventSystemOptionsCallback[];
4097
- }): void;
4098
- onPointerDragEnd(pointerData: {
4099
- entity: Entity;
4100
- opts?: Partial<EventSystemOptions>;
4101
- }, cb: EventSystemCallback): void;
4102
- onPointerDragLocked(pointerData: {
4103
- entity: Entity;
4104
- optsList: EventSystemOptionsCallback[];
4105
- }): void;
4106
- onPointerDragLocked(pointerData: {
4107
- entity: Entity;
4108
- opts?: Partial<EventSystemOptions>;
4109
- }, cb: EventSystemCallback): void;
4110
3747
  onPointerHoverEnter(pointerData: {
4111
3748
  entity: Entity;
4112
3749
  opts?: Partial<EventSystemOptions>;
@@ -4115,10 +3752,6 @@ export interface PointerEventsSystem {
4115
3752
  entity: Entity;
4116
3753
  opts?: Partial<EventSystemOptions>;
4117
3754
  }, cb: EventSystemCallback): void;
4118
- onPointerUp(pointerData: {
4119
- entity: Entity;
4120
- optsList: EventSystemOptionsCallback[];
4121
- }): void;
4122
3755
  onPointerUp(pointerData: {
4123
3756
  entity: Entity;
4124
3757
  opts?: Partial<EventSystemOptions>;
@@ -4126,9 +3759,6 @@ export interface PointerEventsSystem {
4126
3759
  // @deprecated (undocumented)
4127
3760
  onPointerUp(entity: Entity, cb: EventSystemCallback, opts?: Partial<EventSystemOptions>): void;
4128
3761
  removeOnPointerDown(entity: Entity): void;
4129
- removeOnPointerDrag(entity: Entity): void;
4130
- removeOnPointerDragEnd(entity: Entity): void;
4131
- removeOnPointerDragLocked(entity: Entity): void;
4132
3762
  removeOnPointerHoverEnter(entity: Entity): void;
4133
3763
  removeOnPointerHoverLeave(entity: Entity): void;
4134
3764
  removeOnPointerUp(entity: Entity): void;
@@ -4142,12 +3772,6 @@ export const enum PointerEventType {
4142
3772
  // (undocumented)
4143
3773
  PET_DOWN = 1,
4144
3774
  // (undocumented)
4145
- PET_DRAG = 5,
4146
- // (undocumented)
4147
- PET_DRAG_END = 6,
4148
- // (undocumented)
4149
- PET_DRAG_LOCKED = 4,
4150
- // (undocumented)
4151
3775
  PET_HOVER_ENTER = 2,
4152
3776
  // (undocumented)
4153
3777
  PET_HOVER_LEAVE = 3,
@@ -4172,13 +3796,7 @@ export const PointerLock: LastWriteWinElementSetComponentDefinition<PBPointerLoc
4172
3796
  // @public (undocumented)
4173
3797
  export const enum PointerType {
4174
3798
  POT_MOUSE = 1,
4175
- POT_NONE = 0,
4176
- // (undocumented)
4177
- POT_PAD = 2,
4178
- // (undocumented)
4179
- POT_TOUCH = 3,
4180
- // (undocumented)
4181
- POT_WAND = 4
3799
+ POT_NONE = 0
4182
3800
  }
4183
3801
 
4184
3802
  // @public
@@ -4423,8 +4041,6 @@ export interface ReactBasedUiSystem {
4423
4041
  addUiRenderer(entity: Entity, ui: UiComponent, options?: UiRendererOptions): void;
4424
4042
  destroy(): void;
4425
4043
  removeUiRenderer(entity: Entity): void;
4426
- // @deprecated
4427
- setTextureRenderer(entity: Entity, ui: UiComponent): void;
4428
4044
  setUiRenderer(ui: UiComponent, options?: UiRendererOptions): void;
4429
4045
  }
4430
4046
 
@@ -4724,44 +4340,6 @@ export namespace Schemas {
4724
4340
  }) => void;
4725
4341
  }
4726
4342
 
4727
- // @public (undocumented)
4728
- export interface ScrollPositionValue {
4729
- // (undocumented)
4730
- value?: {
4731
- $case: "position";
4732
- position: PBVector2;
4733
- } | {
4734
- $case: "reference";
4735
- reference: string;
4736
- } | undefined;
4737
- }
4738
-
4739
- // @public (undocumented)
4740
- export namespace ScrollPositionValue {
4741
- // (undocumented)
4742
- export function decode(input: _m0.Reader | Uint8Array, length?: number): ScrollPositionValue;
4743
- // (undocumented)
4744
- export function encode(message: ScrollPositionValue, writer?: _m0.Writer): _m0.Writer;
4745
- }
4746
-
4747
- // @public
4748
- export type ScrollVisibleType = 'horizontal' | 'vertical' | 'both' | 'hidden';
4749
-
4750
- // @public
4751
- export function setGlobalPolyfill<T>(key: string, value: T): void;
4752
-
4753
- // @public (undocumented)
4754
- export const enum ShowScrollBar {
4755
- // (undocumented)
4756
- SSB_BOTH = 0,
4757
- // (undocumented)
4758
- SSB_HIDDEN = 3,
4759
- // (undocumented)
4760
- SSB_ONLY_HORIZONTAL = 2,
4761
- // (undocumented)
4762
- SSB_ONLY_VERTICAL = 1
4763
- }
4764
-
4765
4343
  // @public (undocumented)
4766
4344
  export const SkyboxTime: LastWriteWinElementSetComponentDefinition<PBSkyboxTime>;
4767
4345
 
@@ -4875,9 +4453,6 @@ export namespace Texture {
4875
4453
  export function encode(message: Texture, writer?: _m0.Writer): _m0.Writer;
4876
4454
  }
4877
4455
 
4878
- // @public (undocumented)
4879
- export const TextureCamera: LastWriteWinElementSetComponentDefinition<PBTextureCamera>;
4880
-
4881
4456
  // @public (undocumented)
4882
4457
  export const enum TextureFilterMode {
4883
4458
  // (undocumented)
@@ -4957,9 +4532,6 @@ export interface TextureUnion {
4957
4532
  } | {
4958
4533
  $case: "videoTexture";
4959
4534
  videoTexture: VideoTexture;
4960
- } | {
4961
- $case: "uiTexture";
4962
- uiTexture: UiCanvasTexture;
4963
4535
  } | undefined;
4964
4536
  }
4965
4537
 
@@ -5220,7 +4792,6 @@ export interface UiBackgroundProps {
5220
4792
  textureMode?: TextureMode;
5221
4793
  textureSlices?: BorderRect | undefined;
5222
4794
  uvs?: number[];
5223
- videoTexture?: UiVideoTexture;
5224
4795
  }
5225
4796
 
5226
4797
  // @public
@@ -5229,28 +4800,9 @@ export interface UiButtonProps extends UiLabelProps, EntityPropTypes {
5229
4800
  variant?: 'primary' | 'secondary';
5230
4801
  }
5231
4802
 
5232
- // @public (undocumented)
5233
- export const UiCanvas: LastWriteWinElementSetComponentDefinition<PBUiCanvas>;
5234
-
5235
4803
  // @public (undocumented)
5236
4804
  export const UiCanvasInformation: LastWriteWinElementSetComponentDefinition<PBUiCanvasInformation>;
5237
4805
 
5238
- // @public (undocumented)
5239
- export interface UiCanvasTexture {
5240
- filterMode?: TextureFilterMode | undefined;
5241
- // (undocumented)
5242
- uiCanvasEntity: number;
5243
- wrapMode?: TextureWrapMode | undefined;
5244
- }
5245
-
5246
- // @public (undocumented)
5247
- export namespace UiCanvasTexture {
5248
- // (undocumented)
5249
- export function decode(input: _m0.Reader | Uint8Array, length?: number): UiCanvasTexture;
5250
- // (undocumented)
5251
- export function encode(message: UiCanvasTexture, writer?: _m0.Writer): _m0.Writer;
5252
- }
5253
-
5254
4806
  // @public (undocumented)
5255
4807
  export type UiComponent = () => ReactEcs.JSX.ReactNode;
5256
4808
 
@@ -5305,8 +4857,6 @@ export interface UiLabelProps {
5305
4857
  color?: PBColor4 | undefined;
5306
4858
  font?: UiFontType | undefined;
5307
4859
  fontSize?: ScaleUnit | undefined;
5308
- outlineColor?: PBColor4 | undefined;
5309
- outlineWidth?: number | undefined;
5310
4860
  textAlign?: TextAlignType | undefined;
5311
4861
  textWrap?: UiTextWrapType | undefined;
5312
4862
  value: string;
@@ -5321,9 +4871,6 @@ export type UiRendererOptions = {
5321
4871
  virtualHeight: number;
5322
4872
  };
5323
4873
 
5324
- // @public (undocumented)
5325
- export const UiScrollResult: LastWriteWinElementSetComponentDefinition<PBUiScrollResult>;
5326
-
5327
4874
  // @public (undocumented)
5328
4875
  export const UiText: LastWriteWinElementSetComponentDefinition<PBUiText>;
5329
4876
 
@@ -5352,7 +4899,6 @@ export interface UiTransformProps {
5352
4899
  // (undocumented)
5353
4900
  borderWidth?: Partial<Position> | PositionUnit;
5354
4901
  display?: DisplayType;
5355
- elementId?: string;
5356
4902
  flex?: number;
5357
4903
  flexBasis?: number;
5358
4904
  flexDirection?: FlexDirectionType;
@@ -5372,25 +4918,24 @@ export interface UiTransformProps {
5372
4918
  pointerFilter?: PointerFilterType;
5373
4919
  position?: Partial<Position> | PositionShorthand;
5374
4920
  positionType?: PositionType;
5375
- scrollPosition?: PBVector2 | string;
5376
- scrollVisible?: ScrollVisibleType;
5377
4921
  width?: PositionUnit | 'auto';
5378
4922
  zIndex?: number;
5379
4923
  }
5380
4924
 
5381
- // @public
5382
- export interface UiVideoTexture {
5383
- // (undocumented)
5384
- filterMode?: TextureFilterType;
5385
- // (undocumented)
5386
- videoPlayerEntity: Entity;
5387
- // (undocumented)
5388
- wrapMode?: TextureWrapType;
5389
- }
5390
-
5391
4925
  // @public (undocumented)
5392
4926
  export type Unpacked<T> = T extends (infer U)[] ? U : T;
5393
4927
 
4928
+ // Warning: (ae-missing-release-tag) "ValidateCallback" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
4929
+ //
4930
+ // @public (undocumented)
4931
+ export type ValidateCallback<T> = (value: {
4932
+ entity: Entity;
4933
+ currentValue: T | undefined;
4934
+ newValue: T | undefined;
4935
+ senderAddress: string;
4936
+ createdBy: string;
4937
+ }) => boolean;
4938
+
5394
4939
  // @public (undocumented)
5395
4940
  export type ValueSetOptions<T> = {
5396
4941
  timestampFunction: (value: DeepReadonly<T>) => number;