@dcl/playground-assets 7.22.6-25007982108.commit-83012ab → 7.22.6-25375246959.commit-ec25d50
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 +10325 -0
- package/dist/beta.d.ts +10292 -0
- package/dist/index.bundled.d.ts +10292 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +47 -0
- package/dist/playground/sdk/apis.d.ts +1701 -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 +66 -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 +10325 -0
- package/dist/tsdoc-metadata.json +11 -0
- package/etc/playground-assets.api.json +97495 -0
- package/etc/playground-assets.api.md +436 -545
- package/package.json +4 -4
|
@@ -70,6 +70,9 @@ export const assetLoadLoadingStateSystem: AssetLoadLoadingStateSystem;
|
|
|
70
70
|
// @public (undocumented)
|
|
71
71
|
export type AssetLoadLoadingStateSystemCallback = (event: DeepReadonlyObject<PBAssetLoadLoadingState>) => void;
|
|
72
72
|
|
|
73
|
+
// @public (undocumented)
|
|
74
|
+
export const AudioAnalysis: LastWriteWinElementSetComponentDefinition<PBAudioAnalysis>;
|
|
75
|
+
|
|
73
76
|
// @public (undocumented)
|
|
74
77
|
export const AudioEvent: GrowOnlyValueSetComponentDefinition<PBAudioEvent>;
|
|
75
78
|
|
|
@@ -156,29 +159,12 @@ export const AvatarAttach: LastWriteWinElementSetComponentDefinition<PBAvatarAtt
|
|
|
156
159
|
// @public (undocumented)
|
|
157
160
|
export const AvatarBase: LastWriteWinElementSetComponentDefinition<PBAvatarBase>;
|
|
158
161
|
|
|
159
|
-
// @public (undocumented)
|
|
160
|
-
export const enum AvatarControlType {
|
|
161
|
-
CCT_NONE = 0,
|
|
162
|
-
CCT_RELATIVE = 1,
|
|
163
|
-
CCT_TANK = 2
|
|
164
|
-
}
|
|
165
|
-
|
|
166
162
|
// @public (undocumented)
|
|
167
163
|
export const AvatarEmoteCommand: GrowOnlyValueSetComponentDefinition<PBAvatarEmoteCommand>;
|
|
168
164
|
|
|
169
165
|
// @public (undocumented)
|
|
170
166
|
export const AvatarEquippedData: LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>;
|
|
171
167
|
|
|
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
168
|
// @public (undocumented)
|
|
183
169
|
export const AvatarLocomotionSettings: LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>;
|
|
184
170
|
|
|
@@ -191,47 +177,9 @@ export const enum AvatarModifierType {
|
|
|
191
177
|
AMT_HIDE_AVATARS = 0
|
|
192
178
|
}
|
|
193
179
|
|
|
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
180
|
// @public (undocumented)
|
|
223
181
|
export const AvatarShape: LastWriteWinElementSetComponentDefinition<PBAvatarShape>;
|
|
224
182
|
|
|
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
183
|
// @public (undocumented)
|
|
236
184
|
export interface AvatarTexture {
|
|
237
185
|
filterMode?: TextureFilterMode | undefined;
|
|
@@ -434,15 +382,9 @@ export interface ByteBuffer {
|
|
|
434
382
|
writeUtf8String(value: string, writeLength?: boolean): void;
|
|
435
383
|
}
|
|
436
384
|
|
|
437
|
-
// @public
|
|
385
|
+
// @public
|
|
438
386
|
export type Callback = () => void;
|
|
439
387
|
|
|
440
|
-
// @public (undocumented)
|
|
441
|
-
export const CameraLayer: LastWriteWinElementSetComponentDefinition<PBCameraLayer>;
|
|
442
|
-
|
|
443
|
-
// @public (undocumented)
|
|
444
|
-
export const CameraLayers: LastWriteWinElementSetComponentDefinition<PBCameraLayers>;
|
|
445
|
-
|
|
446
388
|
// @public (undocumented)
|
|
447
389
|
export const CameraMode: LastWriteWinElementSetComponentDefinition<PBCameraMode>;
|
|
448
390
|
|
|
@@ -491,29 +433,6 @@ export const enum CameraType {
|
|
|
491
433
|
// @public (undocumented)
|
|
492
434
|
export type Children = ReactEcs.JSX.ReactNode;
|
|
493
435
|
|
|
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
436
|
// @public (undocumented)
|
|
518
437
|
export const enum ColliderLayer {
|
|
519
438
|
// (undocumented)
|
|
@@ -697,6 +616,22 @@ export type Color4Type = {
|
|
|
697
616
|
a: number;
|
|
698
617
|
};
|
|
699
618
|
|
|
619
|
+
// @public (undocumented)
|
|
620
|
+
export interface ColorRange {
|
|
621
|
+
// (undocumented)
|
|
622
|
+
end: PBColor4 | undefined;
|
|
623
|
+
// (undocumented)
|
|
624
|
+
start: PBColor4 | undefined;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
// @public (undocumented)
|
|
628
|
+
export namespace ColorRange {
|
|
629
|
+
// (undocumented)
|
|
630
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): ColorRange;
|
|
631
|
+
// (undocumented)
|
|
632
|
+
export function encode(message: ColorRange, writer?: _m0.Writer): _m0.Writer;
|
|
633
|
+
}
|
|
634
|
+
|
|
700
635
|
// @public (undocumented)
|
|
701
636
|
export interface ComponentData {
|
|
702
637
|
// (undocumented)
|
|
@@ -731,6 +666,7 @@ export const componentDefinitionByName: {
|
|
|
731
666
|
"core::Animator": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAnimator>>;
|
|
732
667
|
"core::AssetLoad": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAssetLoad>>;
|
|
733
668
|
"core::AssetLoadLoadingState": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAssetLoadLoadingState>>;
|
|
669
|
+
"core::AudioAnalysis": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioAnalysis>>;
|
|
734
670
|
"core::AudioEvent": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBAudioEvent>>;
|
|
735
671
|
"core::AudioSource": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioSource>>;
|
|
736
672
|
"core::AudioStream": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAudioStream>>;
|
|
@@ -740,21 +676,14 @@ export const componentDefinitionByName: {
|
|
|
740
676
|
"core::AvatarEquippedData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarEquippedData>>;
|
|
741
677
|
"core::AvatarLocomotionSettings": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarLocomotionSettings>>;
|
|
742
678
|
"core::AvatarModifierArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>>;
|
|
743
|
-
"core::AvatarMovement": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarMovement>>;
|
|
744
|
-
"core::AvatarMovementInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarMovementInfo>>;
|
|
745
679
|
"core::AvatarShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarShape>>;
|
|
746
680
|
"core::Billboard": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBBillboard>>;
|
|
747
|
-
"core::CameraLayer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraLayer>>;
|
|
748
|
-
"core::CameraLayers": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraLayers>>;
|
|
749
681
|
"core::CameraMode": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraMode>>;
|
|
750
682
|
"core::CameraModeArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraModeArea>>;
|
|
751
683
|
"core::EngineInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBEngineInfo>>;
|
|
752
|
-
"core::GlobalLight": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGlobalLight>>;
|
|
753
684
|
"core::GltfContainer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainer>>;
|
|
754
685
|
"core::GltfContainerLoadingState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>>;
|
|
755
|
-
"core::GltfNode": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNode>>;
|
|
756
686
|
"core::GltfNodeModifiers": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNodeModifiers>>;
|
|
757
|
-
"core::GltfNodeState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBGltfNodeState>>;
|
|
758
687
|
"core::InputModifier": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBInputModifier>>;
|
|
759
688
|
"core::LightSource": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBLightSource>>;
|
|
760
689
|
"core::MainCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMainCamera>>;
|
|
@@ -762,6 +691,9 @@ export const componentDefinitionByName: {
|
|
|
762
691
|
"core::MeshCollider": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshCollider>>;
|
|
763
692
|
"core::MeshRenderer": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBMeshRenderer>>;
|
|
764
693
|
"core::NftShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBNftShape>>;
|
|
694
|
+
"core::ParticleSystem": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBParticleSystem>>;
|
|
695
|
+
"core::PhysicsCombinedForce": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPhysicsCombinedForce>>;
|
|
696
|
+
"core::PhysicsCombinedImpulse": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPhysicsCombinedImpulse>>;
|
|
765
697
|
"core::PlayerIdentityData": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPlayerIdentityData>>;
|
|
766
698
|
"core::PointerEvents": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBPointerEvents>>;
|
|
767
699
|
"core::PointerEventsResult": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBPointerEventsResult>>;
|
|
@@ -772,20 +704,17 @@ export const componentDefinitionByName: {
|
|
|
772
704
|
"core::RealmInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRealmInfo>>;
|
|
773
705
|
"core::SkyboxTime": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBSkyboxTime>>;
|
|
774
706
|
"core::TextShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTextShape>>;
|
|
775
|
-
"core::TextureCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTextureCamera>>;
|
|
776
707
|
"core::TriggerArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTriggerArea>>;
|
|
777
708
|
"core::TriggerAreaResult": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBTriggerAreaResult>>;
|
|
778
709
|
"core::Tween": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTween>>;
|
|
779
710
|
"core::TweenSequence": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTweenSequence>>;
|
|
780
711
|
"core::TweenState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTweenState>>;
|
|
781
712
|
"core::UiBackground": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiBackground>>;
|
|
782
|
-
"core::UiCanvas": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiCanvas>>;
|
|
783
713
|
"core::UiCanvasInformation": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiCanvasInformation>>;
|
|
784
714
|
"core::UiDropdown": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiDropdown>>;
|
|
785
715
|
"core::UiDropdownResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiDropdownResult>>;
|
|
786
716
|
"core::UiInput": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiInput>>;
|
|
787
717
|
"core::UiInputResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiInputResult>>;
|
|
788
|
-
"core::UiScrollResult": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiScrollResult>>;
|
|
789
718
|
"core::UiText": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiText>>;
|
|
790
719
|
"core::UiTransform": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBUiTransform>>;
|
|
791
720
|
"core::VideoEvent": GSetComponentGetter<GrowOnlyValueSetComponentDefinition<PBVideoEvent>>;
|
|
@@ -1223,18 +1152,10 @@ export type EntityComponents = {
|
|
|
1223
1152
|
uiBackground: PBUiBackground;
|
|
1224
1153
|
uiInput: PBUiInput;
|
|
1225
1154
|
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;
|
|
1155
|
+
onMouseDown: Callback;
|
|
1156
|
+
onMouseUp: Callback;
|
|
1157
|
+
onMouseEnter: Callback;
|
|
1158
|
+
onMouseLeave: Callback;
|
|
1238
1159
|
};
|
|
1239
1160
|
|
|
1240
1161
|
// @public (undocumented)
|
|
@@ -1285,11 +1206,7 @@ export type EventSystemOptions = {
|
|
|
1285
1206
|
showFeedback?: boolean;
|
|
1286
1207
|
showHighlight?: boolean;
|
|
1287
1208
|
maxPlayerDistance?: number;
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
// @public (undocumented)
|
|
1291
|
-
export type EventSystemOptionsCallback = EventSystemOptions & {
|
|
1292
|
-
cb: EventSystemCallback;
|
|
1209
|
+
priority?: number;
|
|
1293
1210
|
};
|
|
1294
1211
|
|
|
1295
1212
|
// @public
|
|
@@ -1336,6 +1253,22 @@ export type FlexWrapType = 'wrap' | 'nowrap' | 'wrap-reverse';
|
|
|
1336
1253
|
// @public (undocumented)
|
|
1337
1254
|
export type FloatArray = number[];
|
|
1338
1255
|
|
|
1256
|
+
// @public (undocumented)
|
|
1257
|
+
export interface FloatRange {
|
|
1258
|
+
// (undocumented)
|
|
1259
|
+
end: number;
|
|
1260
|
+
// (undocumented)
|
|
1261
|
+
start: number;
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
// @public (undocumented)
|
|
1265
|
+
export namespace FloatRange {
|
|
1266
|
+
// (undocumented)
|
|
1267
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): FloatRange;
|
|
1268
|
+
// (undocumented)
|
|
1269
|
+
export function encode(message: FloatRange, writer?: _m0.Writer): _m0.Writer;
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1339
1272
|
// @public (undocumented)
|
|
1340
1273
|
export const enum Font {
|
|
1341
1274
|
// (undocumented)
|
|
@@ -1383,9 +1316,6 @@ export type GlobalDirectionRaycastSystemOptions = {
|
|
|
1383
1316
|
direction?: PBVector3;
|
|
1384
1317
|
};
|
|
1385
1318
|
|
|
1386
|
-
// @public (undocumented)
|
|
1387
|
-
export const GlobalLight: LastWriteWinElementSetComponentDefinition<PBGlobalLight>;
|
|
1388
|
-
|
|
1389
1319
|
// 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
1320
|
//
|
|
1391
1321
|
// @public (undocumented)
|
|
@@ -1404,25 +1334,9 @@ export const GltfContainer: LastWriteWinElementSetComponentDefinition<PBGltfCont
|
|
|
1404
1334
|
// @public (undocumented)
|
|
1405
1335
|
export const GltfContainerLoadingState: LastWriteWinElementSetComponentDefinition<PBGltfContainerLoadingState>;
|
|
1406
1336
|
|
|
1407
|
-
// @public (undocumented)
|
|
1408
|
-
export const GltfNode: LastWriteWinElementSetComponentDefinition<PBGltfNode>;
|
|
1409
|
-
|
|
1410
1337
|
// @public (undocumented)
|
|
1411
1338
|
export const GltfNodeModifiers: LastWriteWinElementSetComponentDefinition<PBGltfNodeModifiers>;
|
|
1412
1339
|
|
|
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
1340
|
// @public (undocumented)
|
|
1427
1341
|
export interface GrowOnlyValueSetComponentDefinition<T> extends BaseComponent<T> {
|
|
1428
1342
|
addValue(entity: Entity, val: DeepReadonly<T>): DeepReadonlySet<T>;
|
|
@@ -1547,7 +1461,6 @@ export type IInputSystem = {
|
|
|
1547
1461
|
isTriggered: (inputAction: InputAction, pointerEventType: PointerEventType, entity?: Entity) => boolean;
|
|
1548
1462
|
isPressed: (inputAction: InputAction) => boolean;
|
|
1549
1463
|
getInputCommand: (inputAction: InputAction, pointerEventType: PointerEventType, entity?: Entity) => PBPointerEventsResult | null;
|
|
1550
|
-
getInputCommands: () => Generator<PBPointerEventsResult>;
|
|
1551
1464
|
};
|
|
1552
1465
|
|
|
1553
1466
|
// @public
|
|
@@ -1632,6 +1545,7 @@ export const enum InputAction {
|
|
|
1632
1545
|
IA_JUMP = 8,
|
|
1633
1546
|
// (undocumented)
|
|
1634
1547
|
IA_LEFT = 7,
|
|
1548
|
+
IA_MODIFIER = 14,
|
|
1635
1549
|
// (undocumented)
|
|
1636
1550
|
IA_POINTER = 0,
|
|
1637
1551
|
// (undocumented)
|
|
@@ -1676,6 +1590,14 @@ export type InstanceCompositeOptions = {
|
|
|
1676
1590
|
alreadyRequestedSrc?: Set<string>;
|
|
1677
1591
|
};
|
|
1678
1592
|
|
|
1593
|
+
// @public (undocumented)
|
|
1594
|
+
export const enum InteractionType {
|
|
1595
|
+
// (undocumented)
|
|
1596
|
+
CURSOR = 0,
|
|
1597
|
+
// (undocumented)
|
|
1598
|
+
PROXIMITY = 1
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1679
1601
|
// @public (undocumented)
|
|
1680
1602
|
export interface ISchema<T = any> {
|
|
1681
1603
|
// (undocumented)
|
|
@@ -1750,6 +1672,13 @@ export type JustifyType = 'flex-start' | 'center' | 'flex-end' | 'space-between'
|
|
|
1750
1672
|
// @public
|
|
1751
1673
|
export type Key = number | string;
|
|
1752
1674
|
|
|
1675
|
+
// @public
|
|
1676
|
+
export enum KnockbackFalloff {
|
|
1677
|
+
CONSTANT = 0,
|
|
1678
|
+
INVERSE_SQUARE = 2,
|
|
1679
|
+
LINEAR = 1
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1753
1682
|
// Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
|
|
1754
1683
|
// Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
|
|
1755
1684
|
// Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
|
|
@@ -1797,18 +1726,10 @@ export interface LightSourceHelper {
|
|
|
1797
1726
|
|
|
1798
1727
|
// @public
|
|
1799
1728
|
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;
|
|
1729
|
+
onMouseDown?: Callback;
|
|
1730
|
+
onMouseUp?: Callback;
|
|
1731
|
+
onMouseEnter?: Callback;
|
|
1732
|
+
onMouseLeave?: Callback;
|
|
1812
1733
|
};
|
|
1813
1734
|
|
|
1814
1735
|
// @public (undocumented)
|
|
@@ -2052,7 +1973,6 @@ export const MeshCollider: MeshColliderComponentDefinitionExtended;
|
|
|
2052
1973
|
export interface MeshColliderComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBMeshCollider> {
|
|
2053
1974
|
setBox(entity: Entity, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
|
|
2054
1975
|
setCylinder(entity: Entity, radiusBottom?: number, radiusTop?: number, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
|
|
2055
|
-
setGltfMesh(entity: Entity, source: string, meshName: string, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
|
|
2056
1976
|
setPlane(entity: Entity, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
|
|
2057
1977
|
setSphere(entity: Entity, colliderLayers?: ColliderLayer | ColliderLayer[]): void;
|
|
2058
1978
|
}
|
|
@@ -2066,7 +1986,6 @@ export const MeshRenderer: MeshRendererComponentDefinitionExtended;
|
|
|
2066
1986
|
export interface MeshRendererComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBMeshRenderer> {
|
|
2067
1987
|
setBox(entity: Entity, uvs?: number[]): void;
|
|
2068
1988
|
setCylinder(entity: Entity, radiusBottom?: number, radiusTop?: number): void;
|
|
2069
|
-
setGltfMesh(entity: Entity, source: string, meshName: string): void;
|
|
2070
1989
|
setPlane(entity: Entity, uvs?: number[]): void;
|
|
2071
1990
|
setSphere(entity: Entity): void;
|
|
2072
1991
|
}
|
|
@@ -2114,19 +2033,45 @@ export namespace MoveContinuous {
|
|
|
2114
2033
|
export function encode(message: MoveContinuous, writer?: _m0.Writer): _m0.Writer;
|
|
2115
2034
|
}
|
|
2116
2035
|
|
|
2117
|
-
//
|
|
2118
|
-
|
|
2119
|
-
//
|
|
2120
|
-
|
|
2121
|
-
//
|
|
2122
|
-
|
|
2123
|
-
//
|
|
2124
|
-
|
|
2125
|
-
//
|
|
2126
|
-
|
|
2127
|
-
//
|
|
2036
|
+
// @public (undocumented)
|
|
2037
|
+
export interface MoveRotateScale {
|
|
2038
|
+
// (undocumented)
|
|
2039
|
+
positionEnd: PBVector3 | undefined;
|
|
2040
|
+
// (undocumented)
|
|
2041
|
+
positionStart: PBVector3 | undefined;
|
|
2042
|
+
// (undocumented)
|
|
2043
|
+
rotationEnd: PBQuaternion | undefined;
|
|
2044
|
+
// (undocumented)
|
|
2045
|
+
rotationStart: PBQuaternion | undefined;
|
|
2046
|
+
// (undocumented)
|
|
2047
|
+
scaleEnd: PBVector3 | undefined;
|
|
2048
|
+
// (undocumented)
|
|
2049
|
+
scaleStart: PBVector3 | undefined;
|
|
2050
|
+
}
|
|
2051
|
+
|
|
2052
|
+
// @public (undocumented)
|
|
2053
|
+
export namespace MoveRotateScale {
|
|
2054
|
+
// (undocumented)
|
|
2055
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): MoveRotateScale;
|
|
2056
|
+
// (undocumented)
|
|
2057
|
+
export function encode(message: MoveRotateScale, writer?: _m0.Writer): _m0.Writer;
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2128
2060
|
// @public
|
|
2129
|
-
export
|
|
2061
|
+
export interface MoveRotateScaleModeParams {
|
|
2062
|
+
position?: {
|
|
2063
|
+
start: PBVector3;
|
|
2064
|
+
end: PBVector3;
|
|
2065
|
+
};
|
|
2066
|
+
rotation?: {
|
|
2067
|
+
start: PBQuaternion;
|
|
2068
|
+
end: PBQuaternion;
|
|
2069
|
+
};
|
|
2070
|
+
scale?: {
|
|
2071
|
+
start: PBVector3;
|
|
2072
|
+
end: PBVector3;
|
|
2073
|
+
};
|
|
2074
|
+
}
|
|
2130
2075
|
|
|
2131
2076
|
// 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
2077
|
//
|
|
@@ -2334,21 +2279,26 @@ export const onVideoEvent: Observable<{
|
|
|
2334
2279
|
totalVideoLength: number;
|
|
2335
2280
|
}>;
|
|
2336
2281
|
|
|
2282
|
+
// @public
|
|
2283
|
+
export type OverflowType = 'hidden' | 'scroll' | 'visible';
|
|
2284
|
+
|
|
2285
|
+
// Warning: (ae-missing-release-tag) "ParticleSystem" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
|
|
2286
|
+
//
|
|
2337
2287
|
// @public (undocumented)
|
|
2338
|
-
export
|
|
2339
|
-
verticalRange?: number | undefined;
|
|
2340
|
-
}
|
|
2288
|
+
export const ParticleSystem: ParticleSystemComponentDefinitionExtended;
|
|
2341
2289
|
|
|
2342
2290
|
// @public (undocumented)
|
|
2343
|
-
export
|
|
2344
|
-
|
|
2345
|
-
export function decode(input: _m0.Reader | Uint8Array, length?: number): Orthographic;
|
|
2346
|
-
// (undocumented)
|
|
2347
|
-
export function encode(message: Orthographic, writer?: _m0.Writer): _m0.Writer;
|
|
2291
|
+
export interface ParticleSystemComponentDefinitionExtended extends LastWriteWinElementSetComponentDefinition<PBParticleSystem> {
|
|
2292
|
+
Shape: ParticleSystemHelper;
|
|
2348
2293
|
}
|
|
2349
2294
|
|
|
2350
|
-
// @public
|
|
2351
|
-
export
|
|
2295
|
+
// @public (undocumented)
|
|
2296
|
+
export interface ParticleSystemHelper {
|
|
2297
|
+
Box: (box?: PBParticleSystem_Box) => PBParticleSystem['shape'];
|
|
2298
|
+
Cone: (cone?: PBParticleSystem_Cone) => PBParticleSystem['shape'];
|
|
2299
|
+
Point: (point?: PBParticleSystem_Point) => PBParticleSystem['shape'];
|
|
2300
|
+
Sphere: (sphere?: PBParticleSystem_Sphere) => PBParticleSystem['shape'];
|
|
2301
|
+
}
|
|
2352
2302
|
|
|
2353
2303
|
// @public (undocumented)
|
|
2354
2304
|
export interface PBAnimationState {
|
|
@@ -2410,6 +2360,46 @@ export namespace PBAssetLoadLoadingState {
|
|
|
2410
2360
|
export function encode(message: PBAssetLoadLoadingState, writer?: _m0.Writer): _m0.Writer;
|
|
2411
2361
|
}
|
|
2412
2362
|
|
|
2363
|
+
// @public (undocumented)
|
|
2364
|
+
export interface PBAudioAnalysis {
|
|
2365
|
+
amplitude: number;
|
|
2366
|
+
amplitudeGain?: number | undefined;
|
|
2367
|
+
// Warning: (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
|
|
2368
|
+
band0: number;
|
|
2369
|
+
// (undocumented)
|
|
2370
|
+
band1: number;
|
|
2371
|
+
// (undocumented)
|
|
2372
|
+
band2: number;
|
|
2373
|
+
// (undocumented)
|
|
2374
|
+
band3: number;
|
|
2375
|
+
// (undocumented)
|
|
2376
|
+
band4: number;
|
|
2377
|
+
// (undocumented)
|
|
2378
|
+
band5: number;
|
|
2379
|
+
// (undocumented)
|
|
2380
|
+
band6: number;
|
|
2381
|
+
// (undocumented)
|
|
2382
|
+
band7: number;
|
|
2383
|
+
bandsGain?: number | undefined;
|
|
2384
|
+
mode: PBAudioAnalysisMode;
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2387
|
+
// @public (undocumented)
|
|
2388
|
+
export namespace PBAudioAnalysis {
|
|
2389
|
+
// (undocumented)
|
|
2390
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBAudioAnalysis;
|
|
2391
|
+
// (undocumented)
|
|
2392
|
+
export function encode(message: PBAudioAnalysis, writer?: _m0.Writer): _m0.Writer;
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2395
|
+
// @public (undocumented)
|
|
2396
|
+
export const enum PBAudioAnalysisMode {
|
|
2397
|
+
// (undocumented)
|
|
2398
|
+
MODE_LOGARITHMIC = 1,
|
|
2399
|
+
// (undocumented)
|
|
2400
|
+
MODE_RAW = 0
|
|
2401
|
+
}
|
|
2402
|
+
|
|
2413
2403
|
// @public (undocumented)
|
|
2414
2404
|
export interface PBAudioEvent {
|
|
2415
2405
|
// (undocumented)
|
|
@@ -2519,7 +2509,6 @@ export namespace PBAvatarEmoteCommand {
|
|
|
2519
2509
|
export interface PBAvatarEquippedData {
|
|
2520
2510
|
// (undocumented)
|
|
2521
2511
|
emoteUrns: string[];
|
|
2522
|
-
forceRender: string[];
|
|
2523
2512
|
// (undocumented)
|
|
2524
2513
|
wearableUrns: string[];
|
|
2525
2514
|
}
|
|
@@ -2555,9 +2544,6 @@ export interface PBAvatarModifierArea {
|
|
|
2555
2544
|
area: PBVector3 | undefined;
|
|
2556
2545
|
excludeIds: string[];
|
|
2557
2546
|
modifiers: AvatarModifierType[];
|
|
2558
|
-
// (undocumented)
|
|
2559
|
-
movementSettings?: AvatarMovementSettings | undefined;
|
|
2560
|
-
useColliderRange?: boolean | undefined;
|
|
2561
2547
|
}
|
|
2562
2548
|
|
|
2563
2549
|
// @public (undocumented)
|
|
@@ -2568,40 +2554,6 @@ export namespace PBAvatarModifierArea {
|
|
|
2568
2554
|
export function encode(message: PBAvatarModifierArea, writer?: _m0.Writer): _m0.Writer;
|
|
2569
2555
|
}
|
|
2570
2556
|
|
|
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
2557
|
// @public (undocumented)
|
|
2606
2558
|
export interface PBAvatarShape {
|
|
2607
2559
|
bodyShape?: string | undefined;
|
|
@@ -2609,7 +2561,6 @@ export interface PBAvatarShape {
|
|
|
2609
2561
|
expressionTriggerId?: string | undefined;
|
|
2610
2562
|
expressionTriggerTimestamp?: number | undefined;
|
|
2611
2563
|
eyeColor?: PBColor3 | undefined;
|
|
2612
|
-
forceRender: string[];
|
|
2613
2564
|
hairColor?: PBColor3 | undefined;
|
|
2614
2565
|
id: string;
|
|
2615
2566
|
name?: string | undefined;
|
|
@@ -2640,42 +2591,6 @@ export namespace PBBillboard {
|
|
|
2640
2591
|
export function encode(message: PBBillboard, writer?: _m0.Writer): _m0.Writer;
|
|
2641
2592
|
}
|
|
2642
2593
|
|
|
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
2594
|
// @public (undocumented)
|
|
2680
2595
|
export interface PBCameraMode {
|
|
2681
2596
|
mode: CameraType;
|
|
@@ -2692,10 +2607,7 @@ export namespace PBCameraMode {
|
|
|
2692
2607
|
// @public (undocumented)
|
|
2693
2608
|
export interface PBCameraModeArea {
|
|
2694
2609
|
area: PBVector3 | undefined;
|
|
2695
|
-
// (undocumented)
|
|
2696
|
-
cinematicSettings?: CinematicSettings | undefined;
|
|
2697
2610
|
mode: CameraType;
|
|
2698
|
-
useColliderRange?: boolean | undefined;
|
|
2699
2611
|
}
|
|
2700
2612
|
|
|
2701
2613
|
// @public (undocumented)
|
|
@@ -2759,21 +2671,6 @@ export namespace PBEngineInfo {
|
|
|
2759
2671
|
export function encode(message: PBEngineInfo, writer?: _m0.Writer): _m0.Writer;
|
|
2760
2672
|
}
|
|
2761
2673
|
|
|
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
2674
|
// @public (undocumented)
|
|
2778
2675
|
export interface PBGltfContainer {
|
|
2779
2676
|
invisibleMeshesCollisionMask?: number | undefined;
|
|
@@ -2791,13 +2688,8 @@ export namespace PBGltfContainer {
|
|
|
2791
2688
|
|
|
2792
2689
|
// @public (undocumented)
|
|
2793
2690
|
export interface PBGltfContainerLoadingState {
|
|
2794
|
-
animationNames: string[];
|
|
2795
2691
|
// (undocumented)
|
|
2796
2692
|
currentState: LoadingState;
|
|
2797
|
-
materialNames: string[];
|
|
2798
|
-
meshNames: string[];
|
|
2799
|
-
nodePaths: string[];
|
|
2800
|
-
skinNames: string[];
|
|
2801
2693
|
}
|
|
2802
2694
|
|
|
2803
2695
|
// @public (undocumented)
|
|
@@ -2808,19 +2700,6 @@ export namespace PBGltfContainerLoadingState {
|
|
|
2808
2700
|
export function encode(message: PBGltfContainerLoadingState, writer?: _m0.Writer): _m0.Writer;
|
|
2809
2701
|
}
|
|
2810
2702
|
|
|
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
2703
|
// @public (undocumented)
|
|
2825
2704
|
export interface PBGltfNodeModifiers {
|
|
2826
2705
|
// (undocumented)
|
|
@@ -2850,22 +2729,6 @@ export namespace PBGltfNodeModifiers_GltfNodeModifier {
|
|
|
2850
2729
|
export function encode(message: PBGltfNodeModifiers_GltfNodeModifier, writer?: _m0.Writer): _m0.Writer;
|
|
2851
2730
|
}
|
|
2852
2731
|
|
|
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
2732
|
// @public (undocumented)
|
|
2870
2733
|
export interface PBInputModifier {
|
|
2871
2734
|
// (undocumented)
|
|
@@ -2888,8 +2751,12 @@ export interface PBInputModifier_StandardInput {
|
|
|
2888
2751
|
// (undocumented)
|
|
2889
2752
|
disableAll?: boolean | undefined;
|
|
2890
2753
|
// (undocumented)
|
|
2754
|
+
disableDoubleJump?: boolean | undefined;
|
|
2755
|
+
// (undocumented)
|
|
2891
2756
|
disableEmote?: boolean | undefined;
|
|
2892
2757
|
// (undocumented)
|
|
2758
|
+
disableGliding?: boolean | undefined;
|
|
2759
|
+
// (undocumented)
|
|
2893
2760
|
disableJog?: boolean | undefined;
|
|
2894
2761
|
// (undocumented)
|
|
2895
2762
|
disableJump?: boolean | undefined;
|
|
@@ -2974,7 +2841,6 @@ export namespace PBMainCamera {
|
|
|
2974
2841
|
|
|
2975
2842
|
// @public (undocumented)
|
|
2976
2843
|
export interface PBMaterial {
|
|
2977
|
-
gltf?: PBMaterial_GltfMaterial | undefined;
|
|
2978
2844
|
// (undocumented)
|
|
2979
2845
|
material?: {
|
|
2980
2846
|
$case: "unlit";
|
|
@@ -2993,22 +2859,6 @@ export namespace PBMaterial {
|
|
|
2993
2859
|
export function encode(message: PBMaterial, writer?: _m0.Writer): _m0.Writer;
|
|
2994
2860
|
}
|
|
2995
2861
|
|
|
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
2862
|
// @public (undocumented)
|
|
3013
2863
|
export interface PBMaterial_PbrMaterial {
|
|
3014
2864
|
albedoColor?: PBColor4 | undefined;
|
|
@@ -3070,9 +2920,6 @@ export interface PBMeshCollider {
|
|
|
3070
2920
|
} | {
|
|
3071
2921
|
$case: "plane";
|
|
3072
2922
|
plane: PBMeshCollider_PlaneMesh;
|
|
3073
|
-
} | {
|
|
3074
|
-
$case: "gltf";
|
|
3075
|
-
gltf: PBMeshCollider_GltfMesh;
|
|
3076
2923
|
} | undefined;
|
|
3077
2924
|
}
|
|
3078
2925
|
|
|
@@ -3110,20 +2957,6 @@ export namespace PBMeshCollider_CylinderMesh {
|
|
|
3110
2957
|
export function encode(message: PBMeshCollider_CylinderMesh, writer?: _m0.Writer): _m0.Writer;
|
|
3111
2958
|
}
|
|
3112
2959
|
|
|
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
2960
|
// @public (undocumented)
|
|
3128
2961
|
export interface PBMeshCollider_PlaneMesh {
|
|
3129
2962
|
}
|
|
@@ -3163,9 +2996,6 @@ export interface PBMeshRenderer {
|
|
|
3163
2996
|
} | {
|
|
3164
2997
|
$case: "plane";
|
|
3165
2998
|
plane: PBMeshRenderer_PlaneMesh;
|
|
3166
|
-
} | {
|
|
3167
|
-
$case: "gltf";
|
|
3168
|
-
gltf: PBMeshRenderer_GltfMesh;
|
|
3169
2999
|
} | undefined;
|
|
3170
3000
|
}
|
|
3171
3001
|
|
|
@@ -3204,20 +3034,6 @@ export namespace PBMeshRenderer_CylinderMesh {
|
|
|
3204
3034
|
export function encode(message: PBMeshRenderer_CylinderMesh, writer?: _m0.Writer): _m0.Writer;
|
|
3205
3035
|
}
|
|
3206
3036
|
|
|
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
3037
|
// @public (undocumented)
|
|
3222
3038
|
export interface PBMeshRenderer_PlaneMesh {
|
|
3223
3039
|
uvs: number[];
|
|
@@ -3258,6 +3074,225 @@ export namespace PBNftShape {
|
|
|
3258
3074
|
export function encode(message: PBNftShape, writer?: _m0.Writer): _m0.Writer;
|
|
3259
3075
|
}
|
|
3260
3076
|
|
|
3077
|
+
// @public (undocumented)
|
|
3078
|
+
export interface PBParticleSystem {
|
|
3079
|
+
active?: boolean | undefined;
|
|
3080
|
+
additionalForce?: PBVector3 | undefined;
|
|
3081
|
+
billboard?: boolean | undefined;
|
|
3082
|
+
blendMode?: PBParticleSystem_BlendMode | undefined;
|
|
3083
|
+
bursts?: PBParticleSystem_BurstConfiguration | undefined;
|
|
3084
|
+
// Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
|
|
3085
|
+
// Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
|
|
3086
|
+
colorOverTime?: ColorRange | undefined;
|
|
3087
|
+
faceTravelDirection?: boolean | undefined;
|
|
3088
|
+
gravity?: number | undefined;
|
|
3089
|
+
initialColor?: ColorRange | undefined;
|
|
3090
|
+
initialRotation?: PBQuaternion | undefined;
|
|
3091
|
+
initialSize?: FloatRange | undefined;
|
|
3092
|
+
initialVelocitySpeed?: FloatRange | undefined;
|
|
3093
|
+
lifetime?: number | undefined;
|
|
3094
|
+
limitVelocity?: PBParticleSystem_LimitVelocity | undefined;
|
|
3095
|
+
loop?: boolean | undefined;
|
|
3096
|
+
maxParticles?: number | undefined;
|
|
3097
|
+
playbackState?: PBParticleSystem_PlaybackState | undefined;
|
|
3098
|
+
prewarm?: boolean | undefined;
|
|
3099
|
+
rate?: number | undefined;
|
|
3100
|
+
rotationOverTime?: PBQuaternion | undefined;
|
|
3101
|
+
// (undocumented)
|
|
3102
|
+
shape?: {
|
|
3103
|
+
$case: "point";
|
|
3104
|
+
point: PBParticleSystem_Point;
|
|
3105
|
+
} | {
|
|
3106
|
+
$case: "sphere";
|
|
3107
|
+
sphere: PBParticleSystem_Sphere;
|
|
3108
|
+
} | {
|
|
3109
|
+
$case: "cone";
|
|
3110
|
+
cone: PBParticleSystem_Cone;
|
|
3111
|
+
} | {
|
|
3112
|
+
$case: "box";
|
|
3113
|
+
box: PBParticleSystem_Box;
|
|
3114
|
+
} | undefined;
|
|
3115
|
+
simulationSpace?: PBParticleSystem_SimulationSpace | undefined;
|
|
3116
|
+
// Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
|
|
3117
|
+
// Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
|
|
3118
|
+
sizeOverTime?: FloatRange | undefined;
|
|
3119
|
+
spriteSheet?: PBParticleSystem_SpriteSheetAnimation | undefined;
|
|
3120
|
+
texture?: Texture | undefined;
|
|
3121
|
+
}
|
|
3122
|
+
|
|
3123
|
+
// @public (undocumented)
|
|
3124
|
+
export namespace PBParticleSystem {
|
|
3125
|
+
// (undocumented)
|
|
3126
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem;
|
|
3127
|
+
// (undocumented)
|
|
3128
|
+
export function encode(message: PBParticleSystem, writer?: _m0.Writer): _m0.Writer;
|
|
3129
|
+
}
|
|
3130
|
+
|
|
3131
|
+
// @public (undocumented)
|
|
3132
|
+
const enum PBParticleSystem_BlendMode {
|
|
3133
|
+
PSB_ADD = 1,
|
|
3134
|
+
PSB_ALPHA = 0,
|
|
3135
|
+
PSB_MULTIPLY = 2
|
|
3136
|
+
}
|
|
3137
|
+
export { PBParticleSystem_BlendMode }
|
|
3138
|
+
export { PBParticleSystem_BlendMode as ParticleSystemBlendMode }
|
|
3139
|
+
|
|
3140
|
+
// @public (undocumented)
|
|
3141
|
+
export interface PBParticleSystem_Box {
|
|
3142
|
+
// Warning: (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
|
|
3143
|
+
// Warning: (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
|
|
3144
|
+
size?: PBVector3 | undefined;
|
|
3145
|
+
}
|
|
3146
|
+
|
|
3147
|
+
// @public (undocumented)
|
|
3148
|
+
export namespace PBParticleSystem_Box {
|
|
3149
|
+
// (undocumented)
|
|
3150
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Box;
|
|
3151
|
+
// (undocumented)
|
|
3152
|
+
export function encode(message: PBParticleSystem_Box, writer?: _m0.Writer): _m0.Writer;
|
|
3153
|
+
}
|
|
3154
|
+
|
|
3155
|
+
// @public (undocumented)
|
|
3156
|
+
export interface PBParticleSystem_Burst {
|
|
3157
|
+
count: number;
|
|
3158
|
+
cycles?: number | undefined;
|
|
3159
|
+
interval?: number | undefined;
|
|
3160
|
+
probability?: number | undefined;
|
|
3161
|
+
time: number;
|
|
3162
|
+
}
|
|
3163
|
+
|
|
3164
|
+
// @public (undocumented)
|
|
3165
|
+
export namespace PBParticleSystem_Burst {
|
|
3166
|
+
// (undocumented)
|
|
3167
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Burst;
|
|
3168
|
+
// (undocumented)
|
|
3169
|
+
export function encode(message: PBParticleSystem_Burst, writer?: _m0.Writer): _m0.Writer;
|
|
3170
|
+
}
|
|
3171
|
+
|
|
3172
|
+
// @public (undocumented)
|
|
3173
|
+
export interface PBParticleSystem_BurstConfiguration {
|
|
3174
|
+
// (undocumented)
|
|
3175
|
+
values: PBParticleSystem_Burst[];
|
|
3176
|
+
}
|
|
3177
|
+
|
|
3178
|
+
// @public (undocumented)
|
|
3179
|
+
export namespace PBParticleSystem_BurstConfiguration {
|
|
3180
|
+
// (undocumented)
|
|
3181
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_BurstConfiguration;
|
|
3182
|
+
// (undocumented)
|
|
3183
|
+
export function encode(message: PBParticleSystem_BurstConfiguration, writer?: _m0.Writer): _m0.Writer;
|
|
3184
|
+
}
|
|
3185
|
+
|
|
3186
|
+
// @public (undocumented)
|
|
3187
|
+
export interface PBParticleSystem_Cone {
|
|
3188
|
+
angle?: number | undefined;
|
|
3189
|
+
radius?: number | undefined;
|
|
3190
|
+
}
|
|
3191
|
+
|
|
3192
|
+
// @public (undocumented)
|
|
3193
|
+
export namespace PBParticleSystem_Cone {
|
|
3194
|
+
// (undocumented)
|
|
3195
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Cone;
|
|
3196
|
+
// (undocumented)
|
|
3197
|
+
export function encode(message: PBParticleSystem_Cone, writer?: _m0.Writer): _m0.Writer;
|
|
3198
|
+
}
|
|
3199
|
+
|
|
3200
|
+
// @public (undocumented)
|
|
3201
|
+
export interface PBParticleSystem_LimitVelocity {
|
|
3202
|
+
dampen?: number | undefined;
|
|
3203
|
+
speed: number;
|
|
3204
|
+
}
|
|
3205
|
+
|
|
3206
|
+
// @public (undocumented)
|
|
3207
|
+
export namespace PBParticleSystem_LimitVelocity {
|
|
3208
|
+
// (undocumented)
|
|
3209
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_LimitVelocity;
|
|
3210
|
+
// (undocumented)
|
|
3211
|
+
export function encode(message: PBParticleSystem_LimitVelocity, writer?: _m0.Writer): _m0.Writer;
|
|
3212
|
+
}
|
|
3213
|
+
|
|
3214
|
+
// @public (undocumented)
|
|
3215
|
+
const enum PBParticleSystem_PlaybackState {
|
|
3216
|
+
PS_PAUSED = 1,
|
|
3217
|
+
PS_PLAYING = 0,
|
|
3218
|
+
PS_STOPPED = 2
|
|
3219
|
+
}
|
|
3220
|
+
export { PBParticleSystem_PlaybackState }
|
|
3221
|
+
export { PBParticleSystem_PlaybackState as ParticleSystemPlaybackState }
|
|
3222
|
+
|
|
3223
|
+
// @public (undocumented)
|
|
3224
|
+
export interface PBParticleSystem_Point {
|
|
3225
|
+
}
|
|
3226
|
+
|
|
3227
|
+
// @public (undocumented)
|
|
3228
|
+
export namespace PBParticleSystem_Point {
|
|
3229
|
+
// (undocumented)
|
|
3230
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Point;
|
|
3231
|
+
// (undocumented)
|
|
3232
|
+
export function encode(_: PBParticleSystem_Point, writer?: _m0.Writer): _m0.Writer;
|
|
3233
|
+
}
|
|
3234
|
+
|
|
3235
|
+
// @public (undocumented)
|
|
3236
|
+
export const enum PBParticleSystem_SimulationSpace {
|
|
3237
|
+
PSS_LOCAL = 0,
|
|
3238
|
+
PSS_WORLD = 1
|
|
3239
|
+
}
|
|
3240
|
+
|
|
3241
|
+
// @public (undocumented)
|
|
3242
|
+
export interface PBParticleSystem_Sphere {
|
|
3243
|
+
radius?: number | undefined;
|
|
3244
|
+
}
|
|
3245
|
+
|
|
3246
|
+
// @public (undocumented)
|
|
3247
|
+
export namespace PBParticleSystem_Sphere {
|
|
3248
|
+
// (undocumented)
|
|
3249
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_Sphere;
|
|
3250
|
+
// (undocumented)
|
|
3251
|
+
export function encode(message: PBParticleSystem_Sphere, writer?: _m0.Writer): _m0.Writer;
|
|
3252
|
+
}
|
|
3253
|
+
|
|
3254
|
+
// @public (undocumented)
|
|
3255
|
+
export interface PBParticleSystem_SpriteSheetAnimation {
|
|
3256
|
+
framesPerSecond?: number | undefined;
|
|
3257
|
+
tilesX: number;
|
|
3258
|
+
tilesY: number;
|
|
3259
|
+
}
|
|
3260
|
+
|
|
3261
|
+
// @public (undocumented)
|
|
3262
|
+
export namespace PBParticleSystem_SpriteSheetAnimation {
|
|
3263
|
+
// (undocumented)
|
|
3264
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBParticleSystem_SpriteSheetAnimation;
|
|
3265
|
+
// (undocumented)
|
|
3266
|
+
export function encode(message: PBParticleSystem_SpriteSheetAnimation, writer?: _m0.Writer): _m0.Writer;
|
|
3267
|
+
}
|
|
3268
|
+
|
|
3269
|
+
// @public (undocumented)
|
|
3270
|
+
export interface PBPhysicsCombinedForce {
|
|
3271
|
+
vector: PBVector3 | undefined;
|
|
3272
|
+
}
|
|
3273
|
+
|
|
3274
|
+
// @public (undocumented)
|
|
3275
|
+
export namespace PBPhysicsCombinedForce {
|
|
3276
|
+
// (undocumented)
|
|
3277
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBPhysicsCombinedForce;
|
|
3278
|
+
// (undocumented)
|
|
3279
|
+
export function encode(message: PBPhysicsCombinedForce, writer?: _m0.Writer): _m0.Writer;
|
|
3280
|
+
}
|
|
3281
|
+
|
|
3282
|
+
// @public (undocumented)
|
|
3283
|
+
export interface PBPhysicsCombinedImpulse {
|
|
3284
|
+
eventId: number;
|
|
3285
|
+
vector: PBVector3 | undefined;
|
|
3286
|
+
}
|
|
3287
|
+
|
|
3288
|
+
// @public (undocumented)
|
|
3289
|
+
export namespace PBPhysicsCombinedImpulse {
|
|
3290
|
+
// (undocumented)
|
|
3291
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBPhysicsCombinedImpulse;
|
|
3292
|
+
// (undocumented)
|
|
3293
|
+
export function encode(message: PBPhysicsCombinedImpulse, writer?: _m0.Writer): _m0.Writer;
|
|
3294
|
+
}
|
|
3295
|
+
|
|
3261
3296
|
// @public (undocumented)
|
|
3262
3297
|
export interface PBPlayerIdentityData {
|
|
3263
3298
|
address: string;
|
|
@@ -3290,6 +3325,7 @@ export namespace PBPointerEvents {
|
|
|
3290
3325
|
export interface PBPointerEvents_Entry {
|
|
3291
3326
|
eventInfo: PBPointerEvents_Info | undefined;
|
|
3292
3327
|
eventType: PointerEventType;
|
|
3328
|
+
interactionType?: InteractionType | undefined;
|
|
3293
3329
|
}
|
|
3294
3330
|
|
|
3295
3331
|
// @public (undocumented)
|
|
@@ -3306,6 +3342,7 @@ export interface PBPointerEvents_Info {
|
|
|
3306
3342
|
hoverText?: string | undefined;
|
|
3307
3343
|
maxDistance?: number | undefined;
|
|
3308
3344
|
maxPlayerDistance?: number | undefined;
|
|
3345
|
+
priority?: number | undefined;
|
|
3309
3346
|
showFeedback?: boolean | undefined;
|
|
3310
3347
|
showHighlight?: boolean | undefined;
|
|
3311
3348
|
}
|
|
@@ -3423,11 +3460,9 @@ export interface PBRaycast {
|
|
|
3423
3460
|
$case: "targetEntity";
|
|
3424
3461
|
targetEntity: number;
|
|
3425
3462
|
} | undefined;
|
|
3426
|
-
includeWorld?: boolean | undefined;
|
|
3427
3463
|
maxDistance: number;
|
|
3428
3464
|
originOffset?: PBVector3 | undefined;
|
|
3429
3465
|
queryType: RaycastQueryType;
|
|
3430
|
-
shape?: RaycastShape | undefined;
|
|
3431
3466
|
timestamp?: number | undefined;
|
|
3432
3467
|
}
|
|
3433
3468
|
|
|
@@ -3522,32 +3557,6 @@ export namespace PBTextShape {
|
|
|
3522
3557
|
export function encode(message: PBTextShape, writer?: _m0.Writer): _m0.Writer;
|
|
3523
3558
|
}
|
|
3524
3559
|
|
|
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
3560
|
// @public (undocumented)
|
|
3552
3561
|
export interface PBTriggerArea {
|
|
3553
3562
|
collisionMask?: number | undefined;
|
|
@@ -3626,6 +3635,9 @@ export interface PBTween {
|
|
|
3626
3635
|
} | {
|
|
3627
3636
|
$case: "textureMoveContinuous";
|
|
3628
3637
|
textureMoveContinuous: TextureMoveContinuous;
|
|
3638
|
+
} | {
|
|
3639
|
+
$case: "moveRotateScale";
|
|
3640
|
+
moveRotateScale: MoveRotateScale;
|
|
3629
3641
|
} | undefined;
|
|
3630
3642
|
playing?: boolean | undefined;
|
|
3631
3643
|
}
|
|
@@ -3688,23 +3700,6 @@ export namespace PBUiBackground {
|
|
|
3688
3700
|
export function encode(message: PBUiBackground, writer?: _m0.Writer): _m0.Writer;
|
|
3689
3701
|
}
|
|
3690
3702
|
|
|
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
3703
|
// @public (undocumented)
|
|
3709
3704
|
export interface PBUiCanvasInformation {
|
|
3710
3705
|
devicePixelRatio: number;
|
|
@@ -3798,27 +3793,11 @@ export namespace PBUiInputResult {
|
|
|
3798
3793
|
export function encode(message: PBUiInputResult, writer?: _m0.Writer): _m0.Writer;
|
|
3799
3794
|
}
|
|
3800
3795
|
|
|
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
3796
|
// @public (undocumented)
|
|
3816
3797
|
export interface PBUiText {
|
|
3817
3798
|
color?: PBColor4 | undefined;
|
|
3818
3799
|
font?: Font | undefined;
|
|
3819
3800
|
fontSize?: number | undefined;
|
|
3820
|
-
outlineColor?: PBColor4 | undefined;
|
|
3821
|
-
outlineWidth?: number | undefined;
|
|
3822
3801
|
textAlign?: TextAlignMode | undefined;
|
|
3823
3802
|
textWrap?: TextWrap | undefined;
|
|
3824
3803
|
value: string;
|
|
@@ -3869,7 +3848,6 @@ export interface PBUiTransform {
|
|
|
3869
3848
|
borderTopWidth?: number | undefined;
|
|
3870
3849
|
borderTopWidthUnit?: YGUnit | undefined;
|
|
3871
3850
|
display: YGDisplay;
|
|
3872
|
-
elementId?: string | undefined;
|
|
3873
3851
|
// (undocumented)
|
|
3874
3852
|
flexBasis: number;
|
|
3875
3853
|
flexBasisUnit: YGUnit;
|
|
@@ -3938,8 +3916,6 @@ export interface PBUiTransform {
|
|
|
3938
3916
|
positionType: YGPositionType;
|
|
3939
3917
|
// (undocumented)
|
|
3940
3918
|
rightOf: number;
|
|
3941
|
-
scrollPosition?: ScrollPositionValue | undefined;
|
|
3942
|
-
scrollVisible?: ShowScrollBar | undefined;
|
|
3943
3919
|
// (undocumented)
|
|
3944
3920
|
width: number;
|
|
3945
3921
|
widthUnit: YGUnit;
|
|
@@ -4059,17 +4035,29 @@ export namespace PBVisibilityComponent {
|
|
|
4059
4035
|
export function encode(message: PBVisibilityComponent, writer?: _m0.Writer): _m0.Writer;
|
|
4060
4036
|
}
|
|
4061
4037
|
|
|
4038
|
+
// @public
|
|
4039
|
+
export const Physics: PhysicsSystem;
|
|
4040
|
+
|
|
4062
4041
|
// @public (undocumented)
|
|
4063
|
-
export
|
|
4064
|
-
fieldOfView?: number | undefined;
|
|
4065
|
-
}
|
|
4042
|
+
export const PhysicsCombinedForce: LastWriteWinElementSetComponentDefinition<PBPhysicsCombinedForce>;
|
|
4066
4043
|
|
|
4067
4044
|
// @public (undocumented)
|
|
4068
|
-
export
|
|
4045
|
+
export const PhysicsCombinedImpulse: LastWriteWinElementSetComponentDefinition<PBPhysicsCombinedImpulse>;
|
|
4046
|
+
|
|
4047
|
+
// @public (undocumented)
|
|
4048
|
+
export interface PhysicsSystem {
|
|
4049
|
+
applyForceToPlayer(source: Entity, vector: Vector3Type): void;
|
|
4069
4050
|
// (undocumented)
|
|
4070
|
-
|
|
4051
|
+
applyForceToPlayer(source: Entity, direction: Vector3Type, magnitude: number): void;
|
|
4052
|
+
applyForceToPlayerForDuration(source: Entity, duration: number, vector: Vector3Type): void;
|
|
4071
4053
|
// (undocumented)
|
|
4072
|
-
|
|
4054
|
+
applyForceToPlayerForDuration(source: Entity, duration: number, direction: Vector3Type, magnitude: number): void;
|
|
4055
|
+
applyImpulseToPlayer(vector: Vector3Type): void;
|
|
4056
|
+
// (undocumented)
|
|
4057
|
+
applyImpulseToPlayer(direction: Vector3Type, magnitude: number): void;
|
|
4058
|
+
applyKnockbackToPlayer(fromPosition: Vector3Type, magnitude: number, radius?: number, falloff?: KnockbackFalloff): void;
|
|
4059
|
+
applyRepulsionForceToPlayer(source: Entity, fromPosition: Vector3Type, magnitude: number, radius?: number, falloff?: KnockbackFalloff): void;
|
|
4060
|
+
removeForceFromPlayer(source: Entity): void;
|
|
4073
4061
|
}
|
|
4074
4062
|
|
|
4075
4063
|
// @public
|
|
@@ -4117,65 +4105,50 @@ export const PointerEventsResult: GrowOnlyValueSetComponentDefinition<PBPointerE
|
|
|
4117
4105
|
|
|
4118
4106
|
// @public (undocumented)
|
|
4119
4107
|
export interface PointerEventsSystem {
|
|
4120
|
-
onPointerDown(pointerData: {
|
|
4121
|
-
entity: Entity;
|
|
4122
|
-
optsList: EventSystemOptionsCallback[];
|
|
4123
|
-
}): void;
|
|
4124
4108
|
onPointerDown(pointerData: {
|
|
4125
4109
|
entity: Entity;
|
|
4126
4110
|
opts?: Partial<EventSystemOptions>;
|
|
4127
4111
|
}, cb: EventSystemCallback): void;
|
|
4128
4112
|
// @deprecated (undocumented)
|
|
4129
4113
|
onPointerDown(entity: Entity, cb: EventSystemCallback, opts?: Partial<EventSystemOptions>): void;
|
|
4130
|
-
|
|
4131
|
-
entity: Entity;
|
|
4132
|
-
optsList: EventSystemOptionsCallback[];
|
|
4133
|
-
}): void;
|
|
4134
|
-
onPointerDrag(pointerData: {
|
|
4114
|
+
onPointerHoverEnter(pointerData: {
|
|
4135
4115
|
entity: Entity;
|
|
4136
4116
|
opts?: Partial<EventSystemOptions>;
|
|
4137
4117
|
}, cb: EventSystemCallback): void;
|
|
4138
|
-
|
|
4139
|
-
entity: Entity;
|
|
4140
|
-
optsList: EventSystemOptionsCallback[];
|
|
4141
|
-
}): void;
|
|
4142
|
-
onPointerDragEnd(pointerData: {
|
|
4118
|
+
onPointerHoverLeave(pointerData: {
|
|
4143
4119
|
entity: Entity;
|
|
4144
4120
|
opts?: Partial<EventSystemOptions>;
|
|
4145
4121
|
}, cb: EventSystemCallback): void;
|
|
4146
|
-
|
|
4147
|
-
entity: Entity;
|
|
4148
|
-
optsList: EventSystemOptionsCallback[];
|
|
4149
|
-
}): void;
|
|
4150
|
-
onPointerDragLocked(pointerData: {
|
|
4122
|
+
onPointerUp(pointerData: {
|
|
4151
4123
|
entity: Entity;
|
|
4152
4124
|
opts?: Partial<EventSystemOptions>;
|
|
4153
4125
|
}, cb: EventSystemCallback): void;
|
|
4154
|
-
|
|
4126
|
+
// @deprecated (undocumented)
|
|
4127
|
+
onPointerUp(entity: Entity, cb: EventSystemCallback, opts?: Partial<EventSystemOptions>): void;
|
|
4128
|
+
onProximityDown(pointerData: {
|
|
4155
4129
|
entity: Entity;
|
|
4156
4130
|
opts?: Partial<EventSystemOptions>;
|
|
4157
4131
|
}, cb: EventSystemCallback): void;
|
|
4158
|
-
|
|
4132
|
+
onProximityEnter(pointerData: {
|
|
4159
4133
|
entity: Entity;
|
|
4160
4134
|
opts?: Partial<EventSystemOptions>;
|
|
4161
4135
|
}, cb: EventSystemCallback): void;
|
|
4162
|
-
|
|
4136
|
+
onProximityLeave(pointerData: {
|
|
4163
4137
|
entity: Entity;
|
|
4164
|
-
|
|
4165
|
-
}): void;
|
|
4166
|
-
|
|
4138
|
+
opts?: Partial<EventSystemOptions>;
|
|
4139
|
+
}, cb: EventSystemCallback): void;
|
|
4140
|
+
onProximityUp(pointerData: {
|
|
4167
4141
|
entity: Entity;
|
|
4168
4142
|
opts?: Partial<EventSystemOptions>;
|
|
4169
4143
|
}, cb: EventSystemCallback): void;
|
|
4170
|
-
// @deprecated (undocumented)
|
|
4171
|
-
onPointerUp(entity: Entity, cb: EventSystemCallback, opts?: Partial<EventSystemOptions>): void;
|
|
4172
4144
|
removeOnPointerDown(entity: Entity): void;
|
|
4173
|
-
removeOnPointerDrag(entity: Entity): void;
|
|
4174
|
-
removeOnPointerDragEnd(entity: Entity): void;
|
|
4175
|
-
removeOnPointerDragLocked(entity: Entity): void;
|
|
4176
4145
|
removeOnPointerHoverEnter(entity: Entity): void;
|
|
4177
4146
|
removeOnPointerHoverLeave(entity: Entity): void;
|
|
4178
4147
|
removeOnPointerUp(entity: Entity): void;
|
|
4148
|
+
removeOnProximityDown(entity: Entity): void;
|
|
4149
|
+
removeOnProximityEnter(entity: Entity): void;
|
|
4150
|
+
removeOnProximityLeave(entity: Entity): void;
|
|
4151
|
+
removeOnProximityUp(entity: Entity): void;
|
|
4179
4152
|
}
|
|
4180
4153
|
|
|
4181
4154
|
// @public
|
|
@@ -4186,16 +4159,14 @@ export const enum PointerEventType {
|
|
|
4186
4159
|
// (undocumented)
|
|
4187
4160
|
PET_DOWN = 1,
|
|
4188
4161
|
// (undocumented)
|
|
4189
|
-
PET_DRAG = 5,
|
|
4190
|
-
// (undocumented)
|
|
4191
|
-
PET_DRAG_END = 6,
|
|
4192
|
-
// (undocumented)
|
|
4193
|
-
PET_DRAG_LOCKED = 4,
|
|
4194
|
-
// (undocumented)
|
|
4195
4162
|
PET_HOVER_ENTER = 2,
|
|
4196
4163
|
// (undocumented)
|
|
4197
4164
|
PET_HOVER_LEAVE = 3,
|
|
4198
4165
|
// (undocumented)
|
|
4166
|
+
PET_PROXIMITY_ENTER = 4,
|
|
4167
|
+
// (undocumented)
|
|
4168
|
+
PET_PROXIMITY_LEAVE = 5,
|
|
4169
|
+
// (undocumented)
|
|
4199
4170
|
PET_UP = 0
|
|
4200
4171
|
}
|
|
4201
4172
|
|
|
@@ -4216,13 +4187,7 @@ export const PointerLock: LastWriteWinElementSetComponentDefinition<PBPointerLoc
|
|
|
4216
4187
|
// @public (undocumented)
|
|
4217
4188
|
export const enum PointerType {
|
|
4218
4189
|
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
|
|
4190
|
+
POT_NONE = 0
|
|
4226
4191
|
}
|
|
4227
4192
|
|
|
4228
4193
|
// @public
|
|
@@ -4413,12 +4378,6 @@ export const enum RaycastQueryType {
|
|
|
4413
4378
|
// @public (undocumented)
|
|
4414
4379
|
export const RaycastResult: LastWriteWinElementSetComponentDefinition<PBRaycastResult>;
|
|
4415
4380
|
|
|
4416
|
-
// @public (undocumented)
|
|
4417
|
-
export const enum RaycastShape {
|
|
4418
|
-
RS_AVATAR = 1,
|
|
4419
|
-
RS_RAY = 0
|
|
4420
|
-
}
|
|
4421
|
-
|
|
4422
4381
|
// @public (undocumented)
|
|
4423
4382
|
export interface RaycastSystem {
|
|
4424
4383
|
globalDirectionOptions(options?: Partial<GlobalDirectionRaycastOptions>): RaycastSystemOptions;
|
|
@@ -4473,8 +4432,6 @@ export interface ReactBasedUiSystem {
|
|
|
4473
4432
|
addUiRenderer(entity: Entity, ui: UiComponent, options?: UiRendererOptions): void;
|
|
4474
4433
|
destroy(): void;
|
|
4475
4434
|
removeUiRenderer(entity: Entity): void;
|
|
4476
|
-
// @deprecated
|
|
4477
|
-
setTextureRenderer(entity: Entity, ui: UiComponent): void;
|
|
4478
4435
|
setUiRenderer(ui: UiComponent, options?: UiRendererOptions): void;
|
|
4479
4436
|
}
|
|
4480
4437
|
|
|
@@ -4510,7 +4467,7 @@ export namespace ReactEcs {
|
|
|
4510
4467
|
useEffect: EffectHook;
|
|
4511
4468
|
const // (undocumented)
|
|
4512
4469
|
useState: StateHook;
|
|
4513
|
-
|
|
4470
|
+
export {};
|
|
4514
4471
|
}
|
|
4515
4472
|
|
|
4516
4473
|
// Warning: (tsdoc-at-sign-in-word) The "@" character looks like part of a TSDoc tag; use a backslash to escape it
|
|
@@ -4640,6 +4597,9 @@ export namespace RotateContinuous {
|
|
|
4640
4597
|
export function encode(message: RotateContinuous, writer?: _m0.Writer): _m0.Writer;
|
|
4641
4598
|
}
|
|
4642
4599
|
|
|
4600
|
+
// @public
|
|
4601
|
+
export function rotateVectorByQuaternion(v: Vector3Type, q: QuaternionType): Vector3Type;
|
|
4602
|
+
|
|
4643
4603
|
// Warning: (ae-missing-release-tag) "RPCSendableMessage" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
|
|
4644
4604
|
//
|
|
4645
4605
|
// @public (undocumented)
|
|
@@ -4774,42 +4734,13 @@ export namespace Schemas {
|
|
|
4774
4734
|
}) => void;
|
|
4775
4735
|
}
|
|
4776
4736
|
|
|
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
4737
|
// @public
|
|
4801
4738
|
export function setGlobalPolyfill<T>(key: string, value: T): void;
|
|
4802
4739
|
|
|
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
|
|
4740
|
+
// @public
|
|
4741
|
+
export interface SetMoveRotateScaleParams extends MoveRotateScaleModeParams {
|
|
4742
|
+
duration: number;
|
|
4743
|
+
easingFunction?: EasingFunction;
|
|
4813
4744
|
}
|
|
4814
4745
|
|
|
4815
4746
|
// @public (undocumented)
|
|
@@ -4925,9 +4856,6 @@ export namespace Texture {
|
|
|
4925
4856
|
export function encode(message: Texture, writer?: _m0.Writer): _m0.Writer;
|
|
4926
4857
|
}
|
|
4927
4858
|
|
|
4928
|
-
// @public (undocumented)
|
|
4929
|
-
export const TextureCamera: LastWriteWinElementSetComponentDefinition<PBTextureCamera>;
|
|
4930
|
-
|
|
4931
4859
|
// @public (undocumented)
|
|
4932
4860
|
export const enum TextureFilterMode {
|
|
4933
4861
|
// (undocumented)
|
|
@@ -5007,9 +4935,6 @@ export interface TextureUnion {
|
|
|
5007
4935
|
} | {
|
|
5008
4936
|
$case: "videoTexture";
|
|
5009
4937
|
videoTexture: VideoTexture;
|
|
5010
|
-
} | {
|
|
5011
|
-
$case: "uiTexture";
|
|
5012
|
-
uiTexture: UiCanvasTexture;
|
|
5013
4938
|
} | undefined;
|
|
5014
4939
|
}
|
|
5015
4940
|
|
|
@@ -5088,6 +5013,7 @@ export interface TransformComponentExtended extends TransformComponent {
|
|
|
5088
5013
|
create(entity: Entity, val?: TransformTypeWithOptionals): TransformType;
|
|
5089
5014
|
// (undocumented)
|
|
5090
5015
|
createOrReplace(entity: Entity, val?: TransformTypeWithOptionals): TransformType;
|
|
5016
|
+
localToWorldDirection(entity: Entity, localDirection: Vector3Type): Vector3Type;
|
|
5091
5017
|
}
|
|
5092
5018
|
|
|
5093
5019
|
// @public (undocumented)
|
|
@@ -5189,6 +5115,7 @@ export interface TweenComponentDefinitionExtended extends LastWriteWinElementSet
|
|
|
5189
5115
|
Mode: TweenHelper;
|
|
5190
5116
|
setMove(entity: Entity, start: PBVector3, end: PBVector3, duration: number, easingFunction?: EasingFunction): void;
|
|
5191
5117
|
setMoveContinuous(entity: Entity, direction: PBVector3, speed: number, duration?: number): void;
|
|
5118
|
+
setMoveRotateScale(entity: Entity, params: SetMoveRotateScaleParams): void;
|
|
5192
5119
|
setRotate(entity: Entity, start: PBQuaternion, end: PBQuaternion, duration: number, easingFunction?: EasingFunction): void;
|
|
5193
5120
|
setRotateContinuous(entity: Entity, direction: PBQuaternion, speed: number, duration?: number): void;
|
|
5194
5121
|
setScale(entity: Entity, start: PBVector3, end: PBVector3, duration: number, easingFunction?: EasingFunction): void;
|
|
@@ -5203,6 +5130,8 @@ export interface TweenHelper {
|
|
|
5203
5130
|
// (undocumented)
|
|
5204
5131
|
MoveContinuous: (move: MoveContinuous) => PBTween['mode'];
|
|
5205
5132
|
// (undocumented)
|
|
5133
|
+
MoveRotateScale: (params: MoveRotateScaleModeParams) => PBTween['mode'];
|
|
5134
|
+
// (undocumented)
|
|
5206
5135
|
Rotate: (rotate: Rotate) => PBTween['mode'];
|
|
5207
5136
|
// (undocumented)
|
|
5208
5137
|
RotateContinuous: (rotate: RotateContinuous) => PBTween['mode'];
|
|
@@ -5270,7 +5199,6 @@ export interface UiBackgroundProps {
|
|
|
5270
5199
|
textureMode?: TextureMode;
|
|
5271
5200
|
textureSlices?: BorderRect | undefined;
|
|
5272
5201
|
uvs?: number[];
|
|
5273
|
-
videoTexture?: UiVideoTexture;
|
|
5274
5202
|
}
|
|
5275
5203
|
|
|
5276
5204
|
// @public
|
|
@@ -5279,28 +5207,9 @@ export interface UiButtonProps extends UiLabelProps, EntityPropTypes {
|
|
|
5279
5207
|
variant?: 'primary' | 'secondary';
|
|
5280
5208
|
}
|
|
5281
5209
|
|
|
5282
|
-
// @public (undocumented)
|
|
5283
|
-
export const UiCanvas: LastWriteWinElementSetComponentDefinition<PBUiCanvas>;
|
|
5284
|
-
|
|
5285
5210
|
// @public (undocumented)
|
|
5286
5211
|
export const UiCanvasInformation: LastWriteWinElementSetComponentDefinition<PBUiCanvasInformation>;
|
|
5287
5212
|
|
|
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
5213
|
// @public (undocumented)
|
|
5305
5214
|
export type UiComponent = () => ReactEcs.JSX.ReactNode;
|
|
5306
5215
|
|
|
@@ -5355,8 +5264,6 @@ export interface UiLabelProps {
|
|
|
5355
5264
|
color?: PBColor4 | undefined;
|
|
5356
5265
|
font?: UiFontType | undefined;
|
|
5357
5266
|
fontSize?: ScaleUnit | undefined;
|
|
5358
|
-
outlineColor?: PBColor4 | undefined;
|
|
5359
|
-
outlineWidth?: number | undefined;
|
|
5360
5267
|
textAlign?: TextAlignType | undefined;
|
|
5361
5268
|
textWrap?: UiTextWrapType | undefined;
|
|
5362
5269
|
value: string;
|
|
@@ -5371,9 +5278,6 @@ export type UiRendererOptions = {
|
|
|
5371
5278
|
virtualHeight: number;
|
|
5372
5279
|
};
|
|
5373
5280
|
|
|
5374
|
-
// @public (undocumented)
|
|
5375
|
-
export const UiScrollResult: LastWriteWinElementSetComponentDefinition<PBUiScrollResult>;
|
|
5376
|
-
|
|
5377
5281
|
// @public (undocumented)
|
|
5378
5282
|
export const UiText: LastWriteWinElementSetComponentDefinition<PBUiText>;
|
|
5379
5283
|
|
|
@@ -5402,7 +5306,6 @@ export interface UiTransformProps {
|
|
|
5402
5306
|
// (undocumented)
|
|
5403
5307
|
borderWidth?: Partial<Position> | PositionUnit;
|
|
5404
5308
|
display?: DisplayType;
|
|
5405
|
-
elementId?: string;
|
|
5406
5309
|
flex?: number;
|
|
5407
5310
|
flexBasis?: number;
|
|
5408
5311
|
flexDirection?: FlexDirectionType;
|
|
@@ -5422,22 +5325,10 @@ export interface UiTransformProps {
|
|
|
5422
5325
|
pointerFilter?: PointerFilterType;
|
|
5423
5326
|
position?: Partial<Position> | PositionShorthand;
|
|
5424
5327
|
positionType?: PositionType;
|
|
5425
|
-
scrollPosition?: PBVector2 | string;
|
|
5426
|
-
scrollVisible?: ScrollVisibleType;
|
|
5427
5328
|
width?: PositionUnit | 'auto';
|
|
5428
5329
|
zIndex?: number;
|
|
5429
5330
|
}
|
|
5430
5331
|
|
|
5431
|
-
// @public
|
|
5432
|
-
export interface UiVideoTexture {
|
|
5433
|
-
// (undocumented)
|
|
5434
|
-
filterMode?: TextureFilterType;
|
|
5435
|
-
// (undocumented)
|
|
5436
|
-
videoPlayerEntity: Entity;
|
|
5437
|
-
// (undocumented)
|
|
5438
|
-
wrapMode?: TextureWrapType;
|
|
5439
|
-
}
|
|
5440
|
-
|
|
5441
5332
|
// @public (undocumented)
|
|
5442
5333
|
export type Unpacked<T> = T extends (infer U)[] ? U : T;
|
|
5443
5334
|
|