@dcl/playground-assets 7.21.1-22917715332.commit-e5d969d → 7.21.1-23203004012.commit-7c64ac2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/alpha.d.ts +9735 -0
- package/dist/beta.d.ts +9702 -0
- package/dist/index.bundled.d.ts +9702 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +47 -0
- package/dist/index.js.map +8 -0
- package/dist/playground/sdk/apis.d.ts +1666 -0
- package/dist/playground/sdk/dcl-sdk.package.json +39 -0
- package/dist/playground/snippets/billboard.ts +111 -0
- package/dist/playground/snippets/cube-spawner.ts +38 -0
- package/dist/playground/snippets/info.json +1 -0
- package/dist/playground/snippets/material.ts +50 -0
- package/dist/playground/snippets/mesh.ts +63 -0
- package/dist/playground/snippets/pointer-events.ts +59 -0
- package/dist/playground/snippets/raycast-hit-many.ts +64 -0
- package/dist/playground/snippets/raycast-hit.ts +65 -0
- package/dist/playground/snippets/ui-backgrounds.tsx +170 -0
- package/dist/playground/snippets/ui-dropdown.tsx +28 -0
- package/dist/playground/snippets/ui.tsx +132 -0
- package/dist/playground-assets.d.ts +9735 -0
- package/dist/tsdoc-metadata.json +11 -0
- package/etc/playground-assets.api.json +91117 -0
- package/etc/playground-assets.api.md +94 -578
- package/package.json +4 -4
|
@@ -156,32 +156,12 @@ 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
|
-
|
|
166
159
|
// @public (undocumented)
|
|
167
160
|
export const AvatarEmoteCommand: GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>;
|
|
168
161
|
|
|
169
162
|
// @public (undocumented)
|
|
170
163
|
export const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
|
|
171
164
|
|
|
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
165
|
// @public (undocumented)
|
|
186
166
|
export const AvatarModifierArea: LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>;
|
|
187
167
|
|
|
@@ -191,47 +171,9 @@ export const enum AvatarModifierType {
|
|
|
191
171
|
AMT_HIDE_AVATARS = 0
|
|
192
172
|
}
|
|
193
173
|
|
|
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
|
-
|
|
222
174
|
// @public (undocumented)
|
|
223
175
|
export const AvatarShape: LastWriteWinElementSetComponentDefinition<PBAvatarShape>;
|
|
224
176
|
|
|
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
|
-
|
|
235
177
|
// @public (undocumented)
|
|
236
178
|
export interface AvatarTexture {
|
|
237
179
|
filterMode?: TextureFilterMode | undefined;
|
|
@@ -434,15 +376,9 @@ export interface ByteBuffer {
|
|
|
434
376
|
writeUtf8String(value: string, writeLength?: boolean): void;
|
|
435
377
|
}
|
|
436
378
|
|
|
437
|
-
// @public
|
|
379
|
+
// @public
|
|
438
380
|
export type Callback = () => void;
|
|
439
381
|
|
|
440
|
-
// @public (undocumented)
|
|
441
|
-
export const CameraLayer: LastWriteWinElementSetComponentDefinition<PBCameraLayer>;
|
|
442
|
-
|
|
443
|
-
// @public (undocumented)
|
|
444
|
-
export const CameraLayers: LastWriteWinElementSetComponentDefinition<PBCameraLayers>;
|
|
445
|
-
|
|
446
382
|
// @public (undocumented)
|
|
447
383
|
export const CameraMode: LastWriteWinElementSetComponentDefinition<PBCameraMode>;
|
|
448
384
|
|
|
@@ -491,29 +427,6 @@ export const enum CameraType {
|
|
|
491
427
|
// @public (undocumented)
|
|
492
428
|
export type Children = ReactEcs.JSX.ReactNode;
|
|
493
429
|
|
|
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
|
-
|
|
517
430
|
// @public (undocumented)
|
|
518
431
|
export const enum ColliderLayer {
|
|
519
432
|
// (undocumented)
|
|
@@ -738,23 +651,15 @@ export const componentDefinitionByName: {
|
|
|
738
651
|
"core::AvatarBase": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarBase>>;
|
|
739
652
|
"core::AvatarEmoteCommand": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>>;
|
|
740
653
|
"core::AvatarEquippedData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>>;
|
|
741
|
-
"core::AvatarLocomotionSettings": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>>;
|
|
742
654
|
"core::AvatarModifierArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>>;
|
|
743
|
-
"core::AvatarMovement": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarMovement>>;
|
|
744
|
-
"core::AvatarMovementInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarMovementInfo>>;
|
|
745
655
|
"core::AvatarShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarShape>>;
|
|
746
656
|
"core::Billboard": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBBillboard>>;
|
|
747
|
-
"core::CameraLayer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraLayer>>;
|
|
748
|
-
"core::CameraLayers": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraLayers>>;
|
|
749
657
|
"core::CameraMode": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraMode>>;
|
|
750
658
|
"core::CameraModeArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraModeArea>>;
|
|
751
659
|
"core::EngineInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBEngineInfo>>;
|
|
752
|
-
"core::GlobalLight": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGlobalLight>>;
|
|
753
660
|
"core::GltfContainer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainer>>;
|
|
754
661
|
"core::GltfContainerLoadingState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>>;
|
|
755
|
-
"core::GltfNode": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNode>>;
|
|
756
662
|
"core::GltfNodeModifiers": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNodeModifiers>>;
|
|
757
|
-
"core::GltfNodeState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNodeState>>;
|
|
758
663
|
"core::InputModifier": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBInputModifier>>;
|
|
759
664
|
"core::LightSource": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBLightSource>>;
|
|
760
665
|
"core::MainCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMainCamera>>;
|
|
@@ -762,6 +667,8 @@ export const componentDefinitionByName: {
|
|
|
762
667
|
"core::MeshCollider": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshCollider>>;
|
|
763
668
|
"core::MeshRenderer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshRenderer>>;
|
|
764
669
|
"core::NftShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBNftShape>>;
|
|
670
|
+
"core::PhysicsCombinedForce": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPhysicsCombinedForce>>;
|
|
671
|
+
"core::PhysicsCombinedImpulse": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPhysicsCombinedImpulse>>;
|
|
765
672
|
"core::PlayerIdentityData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPlayerIdentityData>>;
|
|
766
673
|
"core::PointerEvents": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPointerEvents>>;
|
|
767
674
|
"core::PointerEventsResult": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBPointerEventsResult>>;
|
|
@@ -772,20 +679,17 @@ export const componentDefinitionByName: {
|
|
|
772
679
|
"core::RealmInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRealmInfo>>;
|
|
773
680
|
"core::SkyboxTime": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBSkyboxTime>>;
|
|
774
681
|
"core::TextShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTextShape>>;
|
|
775
|
-
"core::TextureCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTextureCamera>>;
|
|
776
682
|
"core::TriggerArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTriggerArea>>;
|
|
777
683
|
"core::TriggerAreaResult": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBTriggerAreaResult>>;
|
|
778
684
|
"core::Tween": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTween>>;
|
|
779
685
|
"core::TweenSequence": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTweenSequence>>;
|
|
780
686
|
"core::TweenState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTweenState>>;
|
|
781
687
|
"core::UiBackground": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiBackground>>;
|
|
782
|
-
"core::UiCanvas": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiCanvas>>;
|
|
783
688
|
"core::UiCanvasInformation": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiCanvasInformation>>;
|
|
784
689
|
"core::UiDropdown": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiDropdown>>;
|
|
785
690
|
"core::UiDropdownResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiDropdownResult>>;
|
|
786
691
|
"core::UiInput": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiInput>>;
|
|
787
692
|
"core::UiInputResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiInputResult>>;
|
|
788
|
-
"core::UiScrollResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiScrollResult>>;
|
|
789
693
|
"core::UiText": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiText>>;
|
|
790
694
|
"core::UiTransform": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiTransform>>;
|
|
791
695
|
"core::VideoEvent": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBVideoEvent>>;
|
|
@@ -1223,18 +1127,10 @@ export type EntityComponents = {
|
|
|
1223
1127
|
uiBackground: PBUiBackground;
|
|
1224
1128
|
uiInput: PBUiInput;
|
|
1225
1129
|
uiDropdown: PBUiDropdown;
|
|
1226
|
-
onMouseDown:
|
|
1227
|
-
onMouseUp:
|
|
1228
|
-
onMouseEnter:
|
|
1229
|
-
onMouseLeave:
|
|
1230
|
-
onMouseDrag: EventSystemCallback;
|
|
1231
|
-
onMouseDragLocked: EventSystemCallback;
|
|
1232
|
-
onMouseDragEnd: EventSystemCallback;
|
|
1233
|
-
onInputDown: MultiCallback;
|
|
1234
|
-
onInputUp: MultiCallback;
|
|
1235
|
-
onInputDrag: MultiCallback;
|
|
1236
|
-
onInputDragLocked: MultiCallback;
|
|
1237
|
-
onInputDragEnd: MultiCallback;
|
|
1130
|
+
onMouseDown: Callback;
|
|
1131
|
+
onMouseUp: Callback;
|
|
1132
|
+
onMouseEnter: Callback;
|
|
1133
|
+
onMouseLeave: Callback;
|
|
1238
1134
|
};
|
|
1239
1135
|
|
|
1240
1136
|
// @public (undocumented)
|
|
@@ -1287,11 +1183,6 @@ export type EventSystemOptions = {
|
|
|
1287
1183
|
maxPlayerDistance?: number;
|
|
1288
1184
|
};
|
|
1289
1185
|
|
|
1290
|
-
// @public (undocumented)
|
|
1291
|
-
export type EventSystemOptionsCallback = EventSystemOptions & {
|
|
1292
|
-
cb: EventSystemCallback;
|
|
1293
|
-
};
|
|
1294
|
-
|
|
1295
1186
|
// @public
|
|
1296
1187
|
export type ExcludeUndefined<T> = {
|
|
1297
1188
|
[P in keyof T]: undefined extends T[P] ? never : P;
|
|
@@ -1383,9 +1274,6 @@ export type GlobalDirectionRaycastSystemOptions = {
|
|
|
1383
1274
|
direction?: PBVector3;
|
|
1384
1275
|
};
|
|
1385
1276
|
|
|
1386
|
-
// @public (undocumented)
|
|
1387
|
-
export const GlobalLight: LastWriteWinElementSetComponentDefinition<PBGlobalLight>;
|
|
1388
|
-
|
|
1389
1277
|
// 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)
|
|
1390
1278
|
//
|
|
1391
1279
|
// @public (undocumented)
|
|
@@ -1404,25 +1292,9 @@ export const GltfContainer: LastWriteWinElementSetComponentDefinition<PBGltfCont
|
|
|
1404
1292
|
// @public (undocumented)
|
|
1405
1293
|
export const GltfContainerLoadingState: LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>;
|
|
1406
1294
|
|
|
1407
|
-
// @public (undocumented)
|
|
1408
|
-
export const GltfNode: LastWriteWinElementSetComponentDefinition<PBGltfNode>;
|
|
1409
|
-
|
|
1410
1295
|
// @public (undocumented)
|
|
1411
1296
|
export const GltfNodeModifiers: LastWriteWinElementSetComponentDefinition<PBGltfNodeModifiers>;
|
|
1412
1297
|
|
|
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
|
-
|
|
1426
1298
|
// @public (undocumented)
|
|
1427
1299
|
export interface GrowOnlyValueSetComponentDefinition<T> extends BaseComponent<T> {
|
|
1428
1300
|
addValue(entity: Entity, val: DeepReadonly<T>): DeepReadonlySet<T>;
|
|
@@ -1547,7 +1419,6 @@ export type IInputSystem = {
|
|
|
1547
1419
|
isTriggered: (inputAction: InputAction, pointerEventType: PointerEventType, entity?: Entity) => boolean;
|
|
1548
1420
|
isPressed: (inputAction: InputAction) => boolean;
|
|
1549
1421
|
getInputCommand: (inputAction: InputAction, pointerEventType: PointerEventType, entity?: Entity) => PBPointerEventsResult | null;
|
|
1550
|
-
getInputCommands: () => Generator<PBPointerEventsResult>;
|
|
1551
1422
|
};
|
|
1552
1423
|
|
|
1553
1424
|
// @public
|
|
@@ -1797,18 +1668,10 @@ export interface LightSourceHelper {
|
|
|
1797
1668
|
|
|
1798
1669
|
// @public
|
|
1799
1670
|
export type Listeners = {
|
|
1800
|
-
onMouseDown?:
|
|
1801
|
-
onMouseUp?:
|
|
1802
|
-
onMouseEnter?:
|
|
1803
|
-
onMouseLeave?:
|
|
1804
|
-
onMouseDrag?: EventSystemCallback;
|
|
1805
|
-
onMouseDragLocked?: EventSystemCallback;
|
|
1806
|
-
onMouseDragEnd?: EventSystemCallback;
|
|
1807
|
-
onInputDown?: MultiCallback;
|
|
1808
|
-
onInputUp?: MultiCallback;
|
|
1809
|
-
onInputDrag?: MultiCallback;
|
|
1810
|
-
onInputDragLocked?: MultiCallback;
|
|
1811
|
-
onInputDragEnd?: MultiCallback;
|
|
1671
|
+
onMouseDown?: Callback;
|
|
1672
|
+
onMouseUp?: Callback;
|
|
1673
|
+
onMouseEnter?: Callback;
|
|
1674
|
+
onMouseLeave?: Callback;
|
|
1812
1675
|
};
|
|
1813
1676
|
|
|
1814
1677
|
// @public (undocumented)
|
|
@@ -2052,7 +1915,6 @@ export const MeshCollider: MeshColliderComponentDefinitionExtended;
|
|
|
2052
1915
|
export interface MeshColliderComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBMeshCollider> {
|
|
2053
1916
|
setBox(entity: Entity, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
|
|
2054
1917
|
setCylinder(entity: Entity, radiusBottom?: number, radiusTop?: number, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
|
|
2055
|
-
setGltfMesh(entity: Entity, source: string, meshName: string, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
|
|
2056
1918
|
setPlane(entity: Entity, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
|
|
2057
1919
|
setSphere(entity: Entity, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
|
|
2058
1920
|
}
|
|
@@ -2066,7 +1928,6 @@ export const MeshRenderer: MeshRendererComponentDefinitionExtended;
|
|
|
2066
1928
|
export interface MeshRendererComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBMeshRenderer> {
|
|
2067
1929
|
setBox(entity: Entity, uvs?: number[]): void;
|
|
2068
1930
|
setCylinder(entity: Entity, radiusBottom?: number, radiusTop?: number): void;
|
|
2069
|
-
setGltfMesh(entity: Entity, source: string, meshName: string): void;
|
|
2070
1931
|
setPlane(entity: Entity, uvs?: number[]): void;
|
|
2071
1932
|
setSphere(entity: Entity): void;
|
|
2072
1933
|
}
|
|
@@ -2114,19 +1975,45 @@ export namespace MoveContinuous {
|
|
|
2114
1975
|
export function encode(message: MoveContinuous, writer?: _m0.Writer): _m0.Writer;
|
|
2115
1976
|
}
|
|
2116
1977
|
|
|
2117
|
-
//
|
|
2118
|
-
|
|
2119
|
-
//
|
|
2120
|
-
|
|
2121
|
-
//
|
|
2122
|
-
|
|
2123
|
-
//
|
|
2124
|
-
|
|
2125
|
-
//
|
|
2126
|
-
|
|
2127
|
-
//
|
|
1978
|
+
// @public (undocumented)
|
|
1979
|
+
export interface MoveRotateScale {
|
|
1980
|
+
// (undocumented)
|
|
1981
|
+
positionEnd: PBVector3 | undefined;
|
|
1982
|
+
// (undocumented)
|
|
1983
|
+
positionStart: PBVector3 | undefined;
|
|
1984
|
+
// (undocumented)
|
|
1985
|
+
rotationEnd: PBQuaternion | undefined;
|
|
1986
|
+
// (undocumented)
|
|
1987
|
+
rotationStart: PBQuaternion | undefined;
|
|
1988
|
+
// (undocumented)
|
|
1989
|
+
scaleEnd: PBVector3 | undefined;
|
|
1990
|
+
// (undocumented)
|
|
1991
|
+
scaleStart: PBVector3 | undefined;
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
// @public (undocumented)
|
|
1995
|
+
export namespace MoveRotateScale {
|
|
1996
|
+
// (undocumented)
|
|
1997
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): MoveRotateScale;
|
|
1998
|
+
// (undocumented)
|
|
1999
|
+
export function encode(message: MoveRotateScale, writer?: _m0.Writer): _m0.Writer;
|
|
2000
|
+
}
|
|
2001
|
+
|
|
2128
2002
|
// @public
|
|
2129
|
-
export
|
|
2003
|
+
export interface MoveRotateScaleModeParams {
|
|
2004
|
+
position?: {
|
|
2005
|
+
start: PBVector3;
|
|
2006
|
+
end: PBVector3;
|
|
2007
|
+
};
|
|
2008
|
+
rotation?: {
|
|
2009
|
+
start: PBQuaternion;
|
|
2010
|
+
end: PBQuaternion;
|
|
2011
|
+
};
|
|
2012
|
+
scale?: {
|
|
2013
|
+
start: PBVector3;
|
|
2014
|
+
end: PBVector3;
|
|
2015
|
+
};
|
|
2016
|
+
}
|
|
2130
2017
|
|
|
2131
2018
|
// 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)
|
|
2132
2019
|
//
|
|
@@ -2334,19 +2221,6 @@ export const onVideoEvent: Observable<{
|
|
|
2334
2221
|
totalVideoLength: number;
|
|
2335
2222
|
}>;
|
|
2336
2223
|
|
|
2337
|
-
// @public (undocumented)
|
|
2338
|
-
export interface Orthographic {
|
|
2339
|
-
verticalRange?: number | undefined;
|
|
2340
|
-
}
|
|
2341
|
-
|
|
2342
|
-
// @public (undocumented)
|
|
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;
|
|
2348
|
-
}
|
|
2349
|
-
|
|
2350
2224
|
// @public
|
|
2351
2225
|
export type OverflowType = 'hidden' | 'scroll' | 'visible';
|
|
2352
2226
|
|
|
@@ -2519,7 +2393,6 @@ export namespace PBAvatarEmoteCommand {
|
|
|
2519
2393
|
export interface PBAvatarEquippedData {
|
|
2520
2394
|
// (undocumented)
|
|
2521
2395
|
emoteUrns: string[];
|
|
2522
|
-
forceRender: string[];
|
|
2523
2396
|
// (undocumented)
|
|
2524
2397
|
wearableUrns: string[];
|
|
2525
2398
|
}
|
|
@@ -2532,32 +2405,11 @@ export namespace PBAvatarEquippedData {
|
|
|
2532
2405
|
export function encode(message: PBAvatarEquippedData, writer?: _m0.Writer): _m0.Writer;
|
|
2533
2406
|
}
|
|
2534
2407
|
|
|
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
|
-
|
|
2553
2408
|
// @public (undocumented)
|
|
2554
2409
|
export interface PBAvatarModifierArea {
|
|
2555
2410
|
area: PBVector3 | undefined;
|
|
2556
2411
|
excludeIds: string[];
|
|
2557
2412
|
modifiers: AvatarModifierType[];
|
|
2558
|
-
// (undocumented)
|
|
2559
|
-
movementSettings?: AvatarMovementSettings | undefined;
|
|
2560
|
-
useColliderRange?: boolean | undefined;
|
|
2561
2413
|
}
|
|
2562
2414
|
|
|
2563
2415
|
// @public (undocumented)
|
|
@@ -2568,40 +2420,6 @@ export namespace PBAvatarModifierArea {
|
|
|
2568
2420
|
export function encode(message: PBAvatarModifierArea, writer?: _m0.Writer): _m0.Writer;
|
|
2569
2421
|
}
|
|
2570
2422
|
|
|
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
|
-
|
|
2605
2423
|
// @public (undocumented)
|
|
2606
2424
|
export interface PBAvatarShape {
|
|
2607
2425
|
bodyShape?: string | undefined;
|
|
@@ -2609,7 +2427,6 @@ export interface PBAvatarShape {
|
|
|
2609
2427
|
expressionTriggerId?: string | undefined;
|
|
2610
2428
|
expressionTriggerTimestamp?: number | undefined;
|
|
2611
2429
|
eyeColor?: PBColor3 | undefined;
|
|
2612
|
-
forceRender: string[];
|
|
2613
2430
|
hairColor?: PBColor3 | undefined;
|
|
2614
2431
|
id: string;
|
|
2615
2432
|
name?: string | undefined;
|
|
@@ -2640,42 +2457,6 @@ export namespace PBBillboard {
|
|
|
2640
2457
|
export function encode(message: PBBillboard, writer?: _m0.Writer): _m0.Writer;
|
|
2641
2458
|
}
|
|
2642
2459
|
|
|
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
|
-
|
|
2679
2460
|
// @public (undocumented)
|
|
2680
2461
|
export interface PBCameraMode {
|
|
2681
2462
|
mode: CameraType;
|
|
@@ -2692,10 +2473,7 @@ export namespace PBCameraMode {
|
|
|
2692
2473
|
// @public (undocumented)
|
|
2693
2474
|
export interface PBCameraModeArea {
|
|
2694
2475
|
area: PBVector3 | undefined;
|
|
2695
|
-
// (undocumented)
|
|
2696
|
-
cinematicSettings?: CinematicSettings | undefined;
|
|
2697
2476
|
mode: CameraType;
|
|
2698
|
-
useColliderRange?: boolean | undefined;
|
|
2699
2477
|
}
|
|
2700
2478
|
|
|
2701
2479
|
// @public (undocumented)
|
|
@@ -2759,21 +2537,6 @@ export namespace PBEngineInfo {
|
|
|
2759
2537
|
export function encode(message: PBEngineInfo, writer?: _m0.Writer): _m0.Writer;
|
|
2760
2538
|
}
|
|
2761
2539
|
|
|
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
|
-
|
|
2777
2540
|
// @public (undocumented)
|
|
2778
2541
|
export interface PBGltfContainer {
|
|
2779
2542
|
invisibleMeshesCollisionMask?: number | undefined;
|
|
@@ -2791,13 +2554,8 @@ export namespace PBGltfContainer {
|
|
|
2791
2554
|
|
|
2792
2555
|
// @public (undocumented)
|
|
2793
2556
|
export interface PBGltfContainerLoadingState {
|
|
2794
|
-
animationNames: string[];
|
|
2795
2557
|
// (undocumented)
|
|
2796
2558
|
currentState: LoadingState;
|
|
2797
|
-
materialNames: string[];
|
|
2798
|
-
meshNames: string[];
|
|
2799
|
-
nodePaths: string[];
|
|
2800
|
-
skinNames: string[];
|
|
2801
2559
|
}
|
|
2802
2560
|
|
|
2803
2561
|
// @public (undocumented)
|
|
@@ -2808,19 +2566,6 @@ export namespace PBGltfContainerLoadingState {
|
|
|
2808
2566
|
export function encode(message: PBGltfContainerLoadingState, writer?: _m0.Writer): _m0.Writer;
|
|
2809
2567
|
}
|
|
2810
2568
|
|
|
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
|
-
|
|
2824
2569
|
// @public (undocumented)
|
|
2825
2570
|
export interface PBGltfNodeModifiers {
|
|
2826
2571
|
// (undocumented)
|
|
@@ -2850,22 +2595,6 @@ export namespace PBGltfNodeModifiers_GltfNodeModifier {
|
|
|
2850
2595
|
export function encode(message: PBGltfNodeModifiers_GltfNodeModifier, writer?: _m0.Writer): _m0.Writer;
|
|
2851
2596
|
}
|
|
2852
2597
|
|
|
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
|
-
|
|
2869
2598
|
// @public (undocumented)
|
|
2870
2599
|
export interface PBInputModifier {
|
|
2871
2600
|
// (undocumented)
|
|
@@ -2888,8 +2617,12 @@ export interface PBInputModifier_StandardInput {
|
|
|
2888
2617
|
// (undocumented)
|
|
2889
2618
|
disableAll?: boolean | undefined;
|
|
2890
2619
|
// (undocumented)
|
|
2620
|
+
disableDoubleJump?: boolean | undefined;
|
|
2621
|
+
// (undocumented)
|
|
2891
2622
|
disableEmote?: boolean | undefined;
|
|
2892
2623
|
// (undocumented)
|
|
2624
|
+
disableGliding?: boolean | undefined;
|
|
2625
|
+
// (undocumented)
|
|
2893
2626
|
disableJog?: boolean | undefined;
|
|
2894
2627
|
// (undocumented)
|
|
2895
2628
|
disableJump?: boolean | undefined;
|
|
@@ -2974,7 +2707,6 @@ export namespace PBMainCamera {
|
|
|
2974
2707
|
|
|
2975
2708
|
// @public (undocumented)
|
|
2976
2709
|
export interface PBMaterial {
|
|
2977
|
-
gltf?: PBMaterial_GltfMaterial | undefined;
|
|
2978
2710
|
// (undocumented)
|
|
2979
2711
|
material?: {
|
|
2980
2712
|
$case: "unlit";
|
|
@@ -2993,22 +2725,6 @@ export namespace PBMaterial {
|
|
|
2993
2725
|
export function encode(message: PBMaterial, writer?: _m0.Writer): _m0.Writer;
|
|
2994
2726
|
}
|
|
2995
2727
|
|
|
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
|
-
|
|
3012
2728
|
// @public (undocumented)
|
|
3013
2729
|
export interface PBMaterial_PbrMaterial {
|
|
3014
2730
|
albedoColor?: PBColor4 | undefined;
|
|
@@ -3070,9 +2786,6 @@ export interface PBMeshCollider {
|
|
|
3070
2786
|
} | {
|
|
3071
2787
|
$case: "plane";
|
|
3072
2788
|
plane: PBMeshCollider_PlaneMesh;
|
|
3073
|
-
} | {
|
|
3074
|
-
$case: "gltf";
|
|
3075
|
-
gltf: PBMeshCollider_GltfMesh;
|
|
3076
2789
|
} | undefined;
|
|
3077
2790
|
}
|
|
3078
2791
|
|
|
@@ -3110,20 +2823,6 @@ export namespace PBMeshCollider_CylinderMesh {
|
|
|
3110
2823
|
export function encode(message: PBMeshCollider_CylinderMesh, writer?: _m0.Writer): _m0.Writer;
|
|
3111
2824
|
}
|
|
3112
2825
|
|
|
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
|
-
|
|
3127
2826
|
// @public (undocumented)
|
|
3128
2827
|
export interface PBMeshCollider_PlaneMesh {
|
|
3129
2828
|
}
|
|
@@ -3163,9 +2862,6 @@ export interface PBMeshRenderer {
|
|
|
3163
2862
|
} | {
|
|
3164
2863
|
$case: "plane";
|
|
3165
2864
|
plane: PBMeshRenderer_PlaneMesh;
|
|
3166
|
-
} | {
|
|
3167
|
-
$case: "gltf";
|
|
3168
|
-
gltf: PBMeshRenderer_GltfMesh;
|
|
3169
2865
|
} | undefined;
|
|
3170
2866
|
}
|
|
3171
2867
|
|
|
@@ -3204,20 +2900,6 @@ export namespace PBMeshRenderer_CylinderMesh {
|
|
|
3204
2900
|
export function encode(message: PBMeshRenderer_CylinderMesh, writer?: _m0.Writer): _m0.Writer;
|
|
3205
2901
|
}
|
|
3206
2902
|
|
|
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
|
-
|
|
3221
2903
|
// @public (undocumented)
|
|
3222
2904
|
export interface PBMeshRenderer_PlaneMesh {
|
|
3223
2905
|
uvs: number[];
|
|
@@ -3258,6 +2940,33 @@ export namespace PBNftShape {
|
|
|
3258
2940
|
export function encode(message: PBNftShape, writer?: _m0.Writer): _m0.Writer;
|
|
3259
2941
|
}
|
|
3260
2942
|
|
|
2943
|
+
// @public (undocumented)
|
|
2944
|
+
export interface PBPhysicsCombinedForce {
|
|
2945
|
+
vector: PBVector3 | undefined;
|
|
2946
|
+
}
|
|
2947
|
+
|
|
2948
|
+
// @public (undocumented)
|
|
2949
|
+
export namespace PBPhysicsCombinedForce {
|
|
2950
|
+
// (undocumented)
|
|
2951
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBPhysicsCombinedForce;
|
|
2952
|
+
// (undocumented)
|
|
2953
|
+
export function encode(message: PBPhysicsCombinedForce, writer?: _m0.Writer): _m0.Writer;
|
|
2954
|
+
}
|
|
2955
|
+
|
|
2956
|
+
// @public (undocumented)
|
|
2957
|
+
export interface PBPhysicsCombinedImpulse {
|
|
2958
|
+
eventId: number;
|
|
2959
|
+
vector: PBVector3 | undefined;
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2962
|
+
// @public (undocumented)
|
|
2963
|
+
export namespace PBPhysicsCombinedImpulse {
|
|
2964
|
+
// (undocumented)
|
|
2965
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBPhysicsCombinedImpulse;
|
|
2966
|
+
// (undocumented)
|
|
2967
|
+
export function encode(message: PBPhysicsCombinedImpulse, writer?: _m0.Writer): _m0.Writer;
|
|
2968
|
+
}
|
|
2969
|
+
|
|
3261
2970
|
// @public (undocumented)
|
|
3262
2971
|
export interface PBPlayerIdentityData {
|
|
3263
2972
|
address: string;
|
|
@@ -3423,11 +3132,9 @@ export interface PBRaycast {
|
|
|
3423
3132
|
$case: "targetEntity";
|
|
3424
3133
|
targetEntity: number;
|
|
3425
3134
|
} | undefined;
|
|
3426
|
-
includeWorld?: boolean | undefined;
|
|
3427
3135
|
maxDistance: number;
|
|
3428
3136
|
originOffset?: PBVector3 | undefined;
|
|
3429
3137
|
queryType: RaycastQueryType;
|
|
3430
|
-
shape?: RaycastShape | undefined;
|
|
3431
3138
|
timestamp?: number | undefined;
|
|
3432
3139
|
}
|
|
3433
3140
|
|
|
@@ -3522,32 +3229,6 @@ export namespace PBTextShape {
|
|
|
3522
3229
|
export function encode(message: PBTextShape, writer?: _m0.Writer): _m0.Writer;
|
|
3523
3230
|
}
|
|
3524
3231
|
|
|
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
|
-
|
|
3551
3232
|
// @public (undocumented)
|
|
3552
3233
|
export interface PBTriggerArea {
|
|
3553
3234
|
collisionMask?: number | undefined;
|
|
@@ -3626,6 +3307,9 @@ export interface PBTween {
|
|
|
3626
3307
|
} | {
|
|
3627
3308
|
$case: "textureMoveContinuous";
|
|
3628
3309
|
textureMoveContinuous: TextureMoveContinuous;
|
|
3310
|
+
} | {
|
|
3311
|
+
$case: "moveRotateScale";
|
|
3312
|
+
moveRotateScale: MoveRotateScale;
|
|
3629
3313
|
} | undefined;
|
|
3630
3314
|
playing?: boolean | undefined;
|
|
3631
3315
|
}
|
|
@@ -3688,23 +3372,6 @@ export namespace PBUiBackground {
|
|
|
3688
3372
|
export function encode(message: PBUiBackground, writer?: _m0.Writer): _m0.Writer;
|
|
3689
3373
|
}
|
|
3690
3374
|
|
|
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
|
-
|
|
3708
3375
|
// @public (undocumented)
|
|
3709
3376
|
export interface PBUiCanvasInformation {
|
|
3710
3377
|
devicePixelRatio: number;
|
|
@@ -3798,27 +3465,11 @@ export namespace PBUiInputResult {
|
|
|
3798
3465
|
export function encode(message: PBUiInputResult, writer?: _m0.Writer): _m0.Writer;
|
|
3799
3466
|
}
|
|
3800
3467
|
|
|
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
|
-
|
|
3815
3468
|
// @public (undocumented)
|
|
3816
3469
|
export interface PBUiText {
|
|
3817
3470
|
color?: PBColor4 | undefined;
|
|
3818
3471
|
font?: Font | undefined;
|
|
3819
3472
|
fontSize?: number | undefined;
|
|
3820
|
-
outlineColor?: PBColor4 | undefined;
|
|
3821
|
-
outlineWidth?: number | undefined;
|
|
3822
3473
|
textAlign?: TextAlignMode | undefined;
|
|
3823
3474
|
textWrap?: TextWrap | undefined;
|
|
3824
3475
|
value: string;
|
|
@@ -3869,7 +3520,6 @@ export interface PBUiTransform {
|
|
|
3869
3520
|
borderTopWidth?: number | undefined;
|
|
3870
3521
|
borderTopWidthUnit?: YGUnit | undefined;
|
|
3871
3522
|
display: YGDisplay;
|
|
3872
|
-
elementId?: string | undefined;
|
|
3873
3523
|
// (undocumented)
|
|
3874
3524
|
flexBasis: number;
|
|
3875
3525
|
flexBasisUnit: YGUnit;
|
|
@@ -3938,8 +3588,6 @@ export interface PBUiTransform {
|
|
|
3938
3588
|
positionType: YGPositionType;
|
|
3939
3589
|
// (undocumented)
|
|
3940
3590
|
rightOf: number;
|
|
3941
|
-
scrollPosition?: ScrollPositionValue | undefined;
|
|
3942
|
-
scrollVisible?: ShowScrollBar | undefined;
|
|
3943
3591
|
// (undocumented)
|
|
3944
3592
|
width: number;
|
|
3945
3593
|
widthUnit: YGUnit;
|
|
@@ -4060,17 +3708,10 @@ export namespace PBVisibilityComponent {
|
|
|
4060
3708
|
}
|
|
4061
3709
|
|
|
4062
3710
|
// @public (undocumented)
|
|
4063
|
-
export
|
|
4064
|
-
fieldOfView?: number | undefined;
|
|
4065
|
-
}
|
|
3711
|
+
export const PhysicsCombinedForce: LastWriteWinElementSetComponentDefinition<PBPhysicsCombinedForce>;
|
|
4066
3712
|
|
|
4067
3713
|
// @public (undocumented)
|
|
4068
|
-
export
|
|
4069
|
-
// (undocumented)
|
|
4070
|
-
export function decode(input: _m0.Reader | Uint8Array, length?: number): Perspective;
|
|
4071
|
-
// (undocumented)
|
|
4072
|
-
export function encode(message: Perspective, writer?: _m0.Writer): _m0.Writer;
|
|
4073
|
-
}
|
|
3714
|
+
export const PhysicsCombinedImpulse: LastWriteWinElementSetComponentDefinition<PBPhysicsCombinedImpulse>;
|
|
4074
3715
|
|
|
4075
3716
|
// @public
|
|
4076
3717
|
export namespace Plane {
|
|
@@ -4117,40 +3758,12 @@ export const PointerEventsResult: GrowOnlyValueSetComponentDefinition<PBPointerE
|
|
|
4117
3758
|
|
|
4118
3759
|
// @public (undocumented)
|
|
4119
3760
|
export interface PointerEventsSystem {
|
|
4120
|
-
onPointerDown(pointerData: {
|
|
4121
|
-
entity: Entity;
|
|
4122
|
-
optsList: EventSystemOptionsCallback[];
|
|
4123
|
-
}): void;
|
|
4124
3761
|
onPointerDown(pointerData: {
|
|
4125
3762
|
entity: Entity;
|
|
4126
3763
|
opts?: Partial<EventSystemOptions>;
|
|
4127
3764
|
}, cb: EventSystemCallback): void;
|
|
4128
3765
|
// @deprecated (undocumented)
|
|
4129
3766
|
onPointerDown(entity: Entity, cb: EventSystemCallback, opts?: Partial<EventSystemOptions>): void;
|
|
4130
|
-
onPointerDrag(pointerData: {
|
|
4131
|
-
entity: Entity;
|
|
4132
|
-
optsList: EventSystemOptionsCallback[];
|
|
4133
|
-
}): void;
|
|
4134
|
-
onPointerDrag(pointerData: {
|
|
4135
|
-
entity: Entity;
|
|
4136
|
-
opts?: Partial<EventSystemOptions>;
|
|
4137
|
-
}, cb: EventSystemCallback): void;
|
|
4138
|
-
onPointerDragEnd(pointerData: {
|
|
4139
|
-
entity: Entity;
|
|
4140
|
-
optsList: EventSystemOptionsCallback[];
|
|
4141
|
-
}): void;
|
|
4142
|
-
onPointerDragEnd(pointerData: {
|
|
4143
|
-
entity: Entity;
|
|
4144
|
-
opts?: Partial<EventSystemOptions>;
|
|
4145
|
-
}, cb: EventSystemCallback): void;
|
|
4146
|
-
onPointerDragLocked(pointerData: {
|
|
4147
|
-
entity: Entity;
|
|
4148
|
-
optsList: EventSystemOptionsCallback[];
|
|
4149
|
-
}): void;
|
|
4150
|
-
onPointerDragLocked(pointerData: {
|
|
4151
|
-
entity: Entity;
|
|
4152
|
-
opts?: Partial<EventSystemOptions>;
|
|
4153
|
-
}, cb: EventSystemCallback): void;
|
|
4154
3767
|
onPointerHoverEnter(pointerData: {
|
|
4155
3768
|
entity: Entity;
|
|
4156
3769
|
opts?: Partial<EventSystemOptions>;
|
|
@@ -4159,10 +3772,6 @@ export interface PointerEventsSystem {
|
|
|
4159
3772
|
entity: Entity;
|
|
4160
3773
|
opts?: Partial<EventSystemOptions>;
|
|
4161
3774
|
}, cb: EventSystemCallback): void;
|
|
4162
|
-
onPointerUp(pointerData: {
|
|
4163
|
-
entity: Entity;
|
|
4164
|
-
optsList: EventSystemOptionsCallback[];
|
|
4165
|
-
}): void;
|
|
4166
3775
|
onPointerUp(pointerData: {
|
|
4167
3776
|
entity: Entity;
|
|
4168
3777
|
opts?: Partial<EventSystemOptions>;
|
|
@@ -4170,9 +3779,6 @@ export interface PointerEventsSystem {
|
|
|
4170
3779
|
// @deprecated (undocumented)
|
|
4171
3780
|
onPointerUp(entity: Entity, cb: EventSystemCallback, opts?: Partial<EventSystemOptions>): void;
|
|
4172
3781
|
removeOnPointerDown(entity: Entity): void;
|
|
4173
|
-
removeOnPointerDrag(entity: Entity): void;
|
|
4174
|
-
removeOnPointerDragEnd(entity: Entity): void;
|
|
4175
|
-
removeOnPointerDragLocked(entity: Entity): void;
|
|
4176
3782
|
removeOnPointerHoverEnter(entity: Entity): void;
|
|
4177
3783
|
removeOnPointerHoverLeave(entity: Entity): void;
|
|
4178
3784
|
removeOnPointerUp(entity: Entity): void;
|
|
@@ -4186,12 +3792,6 @@ export const enum PointerEventType {
|
|
|
4186
3792
|
// (undocumented)
|
|
4187
3793
|
PET_DOWN = 1,
|
|
4188
3794
|
// (undocumented)
|
|
4189
|
-
PET_DRAG = 5,
|
|
4190
|
-
// (undocumented)
|
|
4191
|
-
PET_DRAG_END = 6,
|
|
4192
|
-
// (undocumented)
|
|
4193
|
-
PET_DRAG_LOCKED = 4,
|
|
4194
|
-
// (undocumented)
|
|
4195
3795
|
PET_HOVER_ENTER = 2,
|
|
4196
3796
|
// (undocumented)
|
|
4197
3797
|
PET_HOVER_LEAVE = 3,
|
|
@@ -4216,13 +3816,7 @@ export const PointerLock: LastWriteWinElementSetComponentDefinition<PBPointerLoc
|
|
|
4216
3816
|
// @public (undocumented)
|
|
4217
3817
|
export const enum PointerType {
|
|
4218
3818
|
POT_MOUSE = 1,
|
|
4219
|
-
POT_NONE = 0
|
|
4220
|
-
// (undocumented)
|
|
4221
|
-
POT_PAD = 2,
|
|
4222
|
-
// (undocumented)
|
|
4223
|
-
POT_TOUCH = 3,
|
|
4224
|
-
// (undocumented)
|
|
4225
|
-
POT_WAND = 4
|
|
3819
|
+
POT_NONE = 0
|
|
4226
3820
|
}
|
|
4227
3821
|
|
|
4228
3822
|
// @public
|
|
@@ -4413,12 +4007,6 @@ export const enum RaycastQueryType {
|
|
|
4413
4007
|
// @public (undocumented)
|
|
4414
4008
|
export const RaycastResult: LastWriteWinElementSetComponentDefinition<PBRaycastResult>;
|
|
4415
4009
|
|
|
4416
|
-
// @public (undocumented)
|
|
4417
|
-
export const enum RaycastShape {
|
|
4418
|
-
RS_AVATAR = 1,
|
|
4419
|
-
RS_RAY = 0
|
|
4420
|
-
}
|
|
4421
|
-
|
|
4422
4010
|
// @public (undocumented)
|
|
4423
4011
|
export interface RaycastSystem {
|
|
4424
4012
|
globalDirectionOptions(options?: Partial<GlobalDirectionRaycastOptions>): RaycastSystemOptions;
|
|
@@ -4473,8 +4061,6 @@ export interface ReactBasedUiSystem {
|
|
|
4473
4061
|
addUiRenderer(entity: Entity, ui: UiComponent, options?: UiRendererOptions): void;
|
|
4474
4062
|
destroy(): void;
|
|
4475
4063
|
removeUiRenderer(entity: Entity): void;
|
|
4476
|
-
// @deprecated
|
|
4477
|
-
setTextureRenderer(entity: Entity, ui: UiComponent): void;
|
|
4478
4064
|
setUiRenderer(ui: UiComponent, options?: UiRendererOptions): void;
|
|
4479
4065
|
}
|
|
4480
4066
|
|
|
@@ -4510,7 +4096,7 @@ export namespace ReactEcs {
|
|
|
4510
4096
|
useEffect: EffectHook;
|
|
4511
4097
|
const // (undocumented)
|
|
4512
4098
|
useState: StateHook;
|
|
4513
|
-
|
|
4099
|
+
export {};
|
|
4514
4100
|
}
|
|
4515
4101
|
|
|
4516
4102
|
// Warning: (tsdoc-at-sign-in-word) The "@" character looks like part of a TSDoc tag; use a backslash to escape it
|
|
@@ -4774,42 +4360,13 @@ export namespace Schemas {
|
|
|
4774
4360
|
}) => void;
|
|
4775
4361
|
}
|
|
4776
4362
|
|
|
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
|
-
|
|
4797
|
-
// @public
|
|
4798
|
-
export type ScrollVisibleType = 'horizontal' | 'vertical' | 'both' | 'hidden';
|
|
4799
|
-
|
|
4800
4363
|
// @public
|
|
4801
4364
|
export function setGlobalPolyfill<T>(key: string, value: T): void;
|
|
4802
4365
|
|
|
4803
|
-
// @public
|
|
4804
|
-
export
|
|
4805
|
-
|
|
4806
|
-
|
|
4807
|
-
// (undocumented)
|
|
4808
|
-
SSB_HIDDEN = 3,
|
|
4809
|
-
// (undocumented)
|
|
4810
|
-
SSB_ONLY_HORIZONTAL = 2,
|
|
4811
|
-
// (undocumented)
|
|
4812
|
-
SSB_ONLY_VERTICAL = 1
|
|
4366
|
+
// @public
|
|
4367
|
+
export interface SetMoveRotateScaleParams extends MoveRotateScaleModeParams {
|
|
4368
|
+
duration: number;
|
|
4369
|
+
easingFunction?: EasingFunction;
|
|
4813
4370
|
}
|
|
4814
4371
|
|
|
4815
4372
|
// @public (undocumented)
|
|
@@ -4925,9 +4482,6 @@ export namespace Texture {
|
|
|
4925
4482
|
export function encode(message: Texture, writer?: _m0.Writer): _m0.Writer;
|
|
4926
4483
|
}
|
|
4927
4484
|
|
|
4928
|
-
// @public (undocumented)
|
|
4929
|
-
export const TextureCamera: LastWriteWinElementSetComponentDefinition<PBTextureCamera>;
|
|
4930
|
-
|
|
4931
4485
|
// @public (undocumented)
|
|
4932
4486
|
export const enum TextureFilterMode {
|
|
4933
4487
|
// (undocumented)
|
|
@@ -5007,9 +4561,6 @@ export interface TextureUnion {
|
|
|
5007
4561
|
} | {
|
|
5008
4562
|
$case: "videoTexture";
|
|
5009
4563
|
videoTexture: VideoTexture;
|
|
5010
|
-
} | {
|
|
5011
|
-
$case: "uiTexture";
|
|
5012
|
-
uiTexture: UiCanvasTexture;
|
|
5013
4564
|
} | undefined;
|
|
5014
4565
|
}
|
|
5015
4566
|
|
|
@@ -5189,6 +4740,7 @@ export interface TweenComponentDefinitionExtended extends LastWriteWinElementSet
|
|
|
5189
4740
|
Mode: TweenHelper;
|
|
5190
4741
|
setMove(entity: Entity, start: PBVector3, end: PBVector3, duration: number, easingFunction?: EasingFunction): void;
|
|
5191
4742
|
setMoveContinuous(entity: Entity, direction: PBVector3, speed: number, duration?: number): void;
|
|
4743
|
+
setMoveRotateScale(entity: Entity, params: SetMoveRotateScaleParams): void;
|
|
5192
4744
|
setRotate(entity: Entity, start: PBQuaternion, end: PBQuaternion, duration: number, easingFunction?: EasingFunction): void;
|
|
5193
4745
|
setRotateContinuous(entity: Entity, direction: PBQuaternion, speed: number, duration?: number): void;
|
|
5194
4746
|
setScale(entity: Entity, start: PBVector3, end: PBVector3, duration: number, easingFunction?: EasingFunction): void;
|
|
@@ -5203,6 +4755,8 @@ export interface TweenHelper {
|
|
|
5203
4755
|
// (undocumented)
|
|
5204
4756
|
MoveContinuous: (move: MoveContinuous) => PBTween['mode'];
|
|
5205
4757
|
// (undocumented)
|
|
4758
|
+
MoveRotateScale: (params: MoveRotateScaleModeParams) => PBTween['mode'];
|
|
4759
|
+
// (undocumented)
|
|
5206
4760
|
Rotate: (rotate: Rotate) => PBTween['mode'];
|
|
5207
4761
|
// (undocumented)
|
|
5208
4762
|
RotateContinuous: (rotate: RotateContinuous) => PBTween['mode'];
|
|
@@ -5270,7 +4824,6 @@ export interface UiBackgroundProps {
|
|
|
5270
4824
|
textureMode?: TextureMode;
|
|
5271
4825
|
textureSlices?: BorderRect | undefined;
|
|
5272
4826
|
uvs?: number[];
|
|
5273
|
-
videoTexture?: UiVideoTexture;
|
|
5274
4827
|
}
|
|
5275
4828
|
|
|
5276
4829
|
// @public
|
|
@@ -5279,28 +4832,9 @@ export interface UiButtonProps extends UiLabelProps, EntityPropTypes {
|
|
|
5279
4832
|
variant?: 'primary' | 'secondary';
|
|
5280
4833
|
}
|
|
5281
4834
|
|
|
5282
|
-
// @public (undocumented)
|
|
5283
|
-
export const UiCanvas: LastWriteWinElementSetComponentDefinition<PBUiCanvas>;
|
|
5284
|
-
|
|
5285
4835
|
// @public (undocumented)
|
|
5286
4836
|
export const UiCanvasInformation: LastWriteWinElementSetComponentDefinition<PBUiCanvasInformation>;
|
|
5287
4837
|
|
|
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
|
-
|
|
5304
4838
|
// @public (undocumented)
|
|
5305
4839
|
export type UiComponent = () => ReactEcs.JSX.ReactNode;
|
|
5306
4840
|
|
|
@@ -5355,8 +4889,6 @@ export interface UiLabelProps {
|
|
|
5355
4889
|
color?: PBColor4 | undefined;
|
|
5356
4890
|
font?: UiFontType | undefined;
|
|
5357
4891
|
fontSize?: ScaleUnit | undefined;
|
|
5358
|
-
outlineColor?: PBColor4 | undefined;
|
|
5359
|
-
outlineWidth?: number | undefined;
|
|
5360
4892
|
textAlign?: TextAlignType | undefined;
|
|
5361
4893
|
textWrap?: UiTextWrapType | undefined;
|
|
5362
4894
|
value: string;
|
|
@@ -5371,9 +4903,6 @@ export type UiRendererOptions = {
|
|
|
5371
4903
|
virtualHeight: number;
|
|
5372
4904
|
};
|
|
5373
4905
|
|
|
5374
|
-
// @public (undocumented)
|
|
5375
|
-
export const UiScrollResult: LastWriteWinElementSetComponentDefinition<PBUiScrollResult>;
|
|
5376
|
-
|
|
5377
4906
|
// @public (undocumented)
|
|
5378
4907
|
export const UiText: LastWriteWinElementSetComponentDefinition<PBUiText>;
|
|
5379
4908
|
|
|
@@ -5402,7 +4931,6 @@ export interface UiTransformProps {
|
|
|
5402
4931
|
// (undocumented)
|
|
5403
4932
|
borderWidth?: Partial<Position> | PositionUnit;
|
|
5404
4933
|
display?: DisplayType;
|
|
5405
|
-
elementId?: string;
|
|
5406
4934
|
flex?: number;
|
|
5407
4935
|
flexBasis?: number;
|
|
5408
4936
|
flexDirection?: FlexDirectionType;
|
|
@@ -5422,22 +4950,10 @@ export interface UiTransformProps {
|
|
|
5422
4950
|
pointerFilter?: PointerFilterType;
|
|
5423
4951
|
position?: Partial<Position> | PositionShorthand;
|
|
5424
4952
|
positionType?: PositionType;
|
|
5425
|
-
scrollPosition?: PBVector2 | string;
|
|
5426
|
-
scrollVisible?: ScrollVisibleType;
|
|
5427
4953
|
width?: PositionUnit | 'auto';
|
|
5428
4954
|
zIndex?: number;
|
|
5429
4955
|
}
|
|
5430
4956
|
|
|
5431
|
-
// @public
|
|
5432
|
-
export interface UiVideoTexture {
|
|
5433
|
-
// (undocumented)
|
|
5434
|
-
filterMode?: TextureFilterType;
|
|
5435
|
-
// (undocumented)
|
|
5436
|
-
videoPlayerEntity: Entity;
|
|
5437
|
-
// (undocumented)
|
|
5438
|
-
wrapMode?: TextureWrapType;
|
|
5439
|
-
}
|
|
5440
|
-
|
|
5441
4957
|
// @public (undocumented)
|
|
5442
4958
|
export type Unpacked<T> = T extends (infer U)[] ? U : T;
|
|
5443
4959
|
|