@rbxts/types 1.0.789 → 1.0.791
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.
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
interface Services {
|
|
8
8
|
AccountService: AccountService;
|
|
9
9
|
AchievementService: AchievementService;
|
|
10
|
-
ActivityHistoryService: ActivityHistoryService;
|
|
11
10
|
AnalyticsService: AnalyticsService;
|
|
12
11
|
AnimationClipProvider: AnimationClipProvider;
|
|
13
12
|
AnimationFromVideoCreatorService: AnimationFromVideoCreatorService;
|
|
@@ -20,6 +19,7 @@ interface Services {
|
|
|
20
19
|
AssetImportService: AssetImportService;
|
|
21
20
|
AssetManagerService: AssetManagerService;
|
|
22
21
|
AssetService: AssetService;
|
|
22
|
+
AudioFocusService: AudioFocusService;
|
|
23
23
|
AvatarChatService: AvatarChatService;
|
|
24
24
|
AvatarCreationService: AvatarCreationService;
|
|
25
25
|
AvatarEditorService: AvatarEditorService;
|
|
@@ -205,6 +205,7 @@ interface CreatableInstances {
|
|
|
205
205
|
AnimationController: AnimationController;
|
|
206
206
|
AnimationRigData: AnimationRigData;
|
|
207
207
|
Animator: Animator;
|
|
208
|
+
Annotation: Annotation;
|
|
208
209
|
ArcHandles: ArcHandles;
|
|
209
210
|
Atmosphere: Atmosphere;
|
|
210
211
|
AtmosphereSensor: AtmosphereSensor;
|
|
@@ -260,6 +261,7 @@ interface CreatableInstances {
|
|
|
260
261
|
Clouds: Clouds;
|
|
261
262
|
Color3Value: Color3Value;
|
|
262
263
|
ColorCorrectionEffect: ColorCorrectionEffect;
|
|
264
|
+
ColorGradingEffect: ColorGradingEffect;
|
|
263
265
|
CompressorSoundEffect: CompressorSoundEffect;
|
|
264
266
|
ConeHandleAdornment: ConeHandleAdornment;
|
|
265
267
|
Configuration: Configuration;
|
|
@@ -461,7 +463,9 @@ interface CreatableInstances {
|
|
|
461
463
|
WeldConstraint: WeldConstraint;
|
|
462
464
|
Wire: Wire;
|
|
463
465
|
WireframeHandleAdornment: WireframeHandleAdornment;
|
|
466
|
+
WorkspaceAnnotation: WorkspaceAnnotation;
|
|
464
467
|
WorldModel: WorldModel;
|
|
468
|
+
WrapDeformer: WrapDeformer;
|
|
465
469
|
WrapLayer: WrapLayer;
|
|
466
470
|
WrapTarget: WrapTarget;
|
|
467
471
|
}
|
|
@@ -492,6 +496,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
492
496
|
BubbleChatConfiguration: BubbleChatConfiguration;
|
|
493
497
|
CatalogPages: CatalogPages;
|
|
494
498
|
ChannelSelectorSoundEffect: ChannelSelectorSoundEffect;
|
|
499
|
+
ChannelTabsConfiguration: ChannelTabsConfiguration;
|
|
495
500
|
CharacterAppearance: CharacterAppearance;
|
|
496
501
|
ChatInputBarConfiguration: ChatInputBarConfiguration;
|
|
497
502
|
ChatWindowConfiguration: ChatWindowConfiguration;
|
|
@@ -1390,18 +1395,6 @@ interface AchievementService extends Instance {
|
|
|
1390
1395
|
readonly _nominal_AchievementService: unique symbol;
|
|
1391
1396
|
}
|
|
1392
1397
|
|
|
1393
|
-
interface ActivityHistoryService extends Instance {
|
|
1394
|
-
/**
|
|
1395
|
-
* **DO NOT USE!**
|
|
1396
|
-
*
|
|
1397
|
-
* This field exists to force TypeScript to recognize this as a nominal type
|
|
1398
|
-
* @hidden
|
|
1399
|
-
* @deprecated
|
|
1400
|
-
*/
|
|
1401
|
-
readonly _nominal_ActivityHistoryService: unique symbol;
|
|
1402
|
-
readonly EventNotificationReceived: RBXScriptSignal<() => void>;
|
|
1403
|
-
}
|
|
1404
|
-
|
|
1405
1398
|
interface AdPortal extends Instance {
|
|
1406
1399
|
/**
|
|
1407
1400
|
* **DO NOT USE!**
|
|
@@ -2289,6 +2282,28 @@ interface Animator extends Instance {
|
|
|
2289
2282
|
readonly AnimationPlayed: RBXScriptSignal<(animationTrack: AnimationTrack) => void>;
|
|
2290
2283
|
}
|
|
2291
2284
|
|
|
2285
|
+
interface Annotation extends Instance {
|
|
2286
|
+
/**
|
|
2287
|
+
* **DO NOT USE!**
|
|
2288
|
+
*
|
|
2289
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2290
|
+
* @hidden
|
|
2291
|
+
* @deprecated
|
|
2292
|
+
*/
|
|
2293
|
+
readonly _nominal_Annotation: unique symbol;
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
interface WorkspaceAnnotation extends Annotation {
|
|
2297
|
+
/**
|
|
2298
|
+
* **DO NOT USE!**
|
|
2299
|
+
*
|
|
2300
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
2301
|
+
* @hidden
|
|
2302
|
+
* @deprecated
|
|
2303
|
+
*/
|
|
2304
|
+
readonly _nominal_WorkspaceAnnotation: unique symbol;
|
|
2305
|
+
}
|
|
2306
|
+
|
|
2292
2307
|
interface AnnotationsService extends Instance {
|
|
2293
2308
|
/**
|
|
2294
2309
|
* **DO NOT USE!**
|
|
@@ -3030,6 +3045,17 @@ interface AudioFlanger extends Instance {
|
|
|
3030
3045
|
GetConnectedWires(this: AudioFlanger, pin: string): unknown;
|
|
3031
3046
|
}
|
|
3032
3047
|
|
|
3048
|
+
interface AudioFocusService extends Instance {
|
|
3049
|
+
/**
|
|
3050
|
+
* **DO NOT USE!**
|
|
3051
|
+
*
|
|
3052
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
3053
|
+
* @hidden
|
|
3054
|
+
* @deprecated
|
|
3055
|
+
*/
|
|
3056
|
+
readonly _nominal_AudioFocusService: unique symbol;
|
|
3057
|
+
}
|
|
3058
|
+
|
|
3033
3059
|
interface AudioListener extends Instance {
|
|
3034
3060
|
/**
|
|
3035
3061
|
* **DO NOT USE!**
|
|
@@ -5107,6 +5133,20 @@ interface BaseWrap extends Instance {
|
|
|
5107
5133
|
readonly ImportOriginWorld: CFrame;
|
|
5108
5134
|
}
|
|
5109
5135
|
|
|
5136
|
+
interface WrapDeformer extends BaseWrap {
|
|
5137
|
+
/**
|
|
5138
|
+
* **DO NOT USE!**
|
|
5139
|
+
*
|
|
5140
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
5141
|
+
* @hidden
|
|
5142
|
+
* @deprecated
|
|
5143
|
+
*/
|
|
5144
|
+
readonly _nominal_WrapDeformer: unique symbol;
|
|
5145
|
+
Amount: number;
|
|
5146
|
+
Enabled: boolean;
|
|
5147
|
+
RenderMeshID: string;
|
|
5148
|
+
}
|
|
5149
|
+
|
|
5110
5150
|
/** The WrapLayer object defines a 3D accessory's inner and outer surfaces and other properties related to layering accessories. These surfaces, or the Inner Cage and Outer Cage, are similar to collision boxes, and describe the surfaces of which other 3D accessories can be placed without clipping or breaking.
|
|
5111
5151
|
*
|
|
5112
5152
|
* Internally, WrapLayer also uses the UV layout of the Inner and Outer cages to match coordinates to another 3D object's cage. This powers the deformation of objects around differently shaped avatars and underlying accessories.
|
|
@@ -15644,6 +15684,7 @@ interface Path2D extends GuiBase {
|
|
|
15644
15684
|
* @deprecated
|
|
15645
15685
|
*/
|
|
15646
15686
|
readonly _nominal_Path2D: unique symbol;
|
|
15687
|
+
Closed: boolean;
|
|
15647
15688
|
Color3: Color3;
|
|
15648
15689
|
Thickness: number;
|
|
15649
15690
|
Visible: boolean;
|
|
@@ -15651,6 +15692,8 @@ interface Path2D extends GuiBase {
|
|
|
15651
15692
|
GetBoundingRect(this: Path2D): Rect;
|
|
15652
15693
|
GetControlPoint(this: Path2D, index: number): Path2DControlPoint;
|
|
15653
15694
|
GetControlPoints(this: Path2D): unknown;
|
|
15695
|
+
GetLength(this: Path2D): number;
|
|
15696
|
+
GetMaxControlPoints(this: Path2D): number;
|
|
15654
15697
|
GetPositionOnCurve(this: Path2D, t: number): UDim2;
|
|
15655
15698
|
GetPositionOnCurveArcLength(this: Path2D, t: number): UDim2;
|
|
15656
15699
|
GetTangentOnCurve(this: Path2D, t: number): Vector2;
|
|
@@ -15659,6 +15702,7 @@ interface Path2D extends GuiBase {
|
|
|
15659
15702
|
RemoveControlPoint(this: Path2D, index: number): void;
|
|
15660
15703
|
SetControlPoints(this: Path2D, controlPoints: Array<any>): void;
|
|
15661
15704
|
UpdateControlPoint(this: Path2D, index: number, point: Path2DControlPoint): void;
|
|
15705
|
+
readonly ControlPointChanged: RBXScriptSignal<() => void>;
|
|
15662
15706
|
}
|
|
15663
15707
|
|
|
15664
15708
|
/** The GuiService is a service which currently allows developers to control what [GuiObject](https://developer.roblox.com/en-us/api-reference/class/GuiObject) is currently being selected by the gamepad navigator. It also allows clients to check if Roblox's main menu is currently open.
|
|
@@ -15708,6 +15752,10 @@ interface GuiService extends Instance {
|
|
|
15708
15752
|
* Tags: NotReplicated
|
|
15709
15753
|
*/
|
|
15710
15754
|
readonly MenuIsOpen: boolean;
|
|
15755
|
+
/**
|
|
15756
|
+
* Tags: NotReplicated
|
|
15757
|
+
*/
|
|
15758
|
+
readonly PreferredTextSize: Enum.PreferredTextSize;
|
|
15711
15759
|
/**
|
|
15712
15760
|
* Tags: Hidden, NotReplicated
|
|
15713
15761
|
*/
|
|
@@ -16866,9 +16914,6 @@ interface Humanoid extends Instance {
|
|
|
16866
16914
|
* GetLimb will throw an error if the [Part's](https://developer.roblox.com/en-us/api-reference/class/Part) parent is not set to the [Humanoid's](https://developer.roblox.com/en-us/api-reference/class/Humanoid) parent.
|
|
16867
16915
|
*/
|
|
16868
16916
|
GetLimb(this: Humanoid, part: BasePart): Enum.Limb;
|
|
16869
|
-
/**
|
|
16870
|
-
* Tags: NotBrowsable
|
|
16871
|
-
*/
|
|
16872
16917
|
GetMoveVelocity(this: Humanoid): Vector3;
|
|
16873
16918
|
/**
|
|
16874
16919
|
* This function returns an array of all [AnimationTracks](https://developer.roblox.com/en-us/api-reference/class/AnimationTrack) that are currently being played on the [Humanoid](https://developer.roblox.com/en-us/api-reference/class/Humanoid).
|
|
@@ -29865,6 +29910,18 @@ interface ColorCorrectionEffect extends PostEffect {
|
|
|
29865
29910
|
TintColor: Color3;
|
|
29866
29911
|
}
|
|
29867
29912
|
|
|
29913
|
+
interface ColorGradingEffect extends PostEffect {
|
|
29914
|
+
/**
|
|
29915
|
+
* **DO NOT USE!**
|
|
29916
|
+
*
|
|
29917
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
29918
|
+
* @hidden
|
|
29919
|
+
* @deprecated
|
|
29920
|
+
*/
|
|
29921
|
+
readonly _nominal_ColorGradingEffect: unique symbol;
|
|
29922
|
+
TonemapperPreset: Enum.TonemapperPreset;
|
|
29923
|
+
}
|
|
29924
|
+
|
|
29868
29925
|
/** The **DepthOfFieldEffect** simulates a camera lens by blurring parts of a scene not in focus. Distant objects can be blurred or this effect can be used to focus on specific parts of a scene, like an item in an in-game shop.
|
|
29869
29926
|
*
|
|
29870
29927
|
* Like other post-processing effects, **DepthOfFieldEffect** will only work while [Enabled](https://developer.roblox.com/en-us/api-reference/property/PostEffect/Enabled) and when parented to [Lighting](https://developer.roblox.com/en-us/api-reference/class/Lighting) or [Workspace.CurrentCamera](https://developer.roblox.com/en-us/api-reference/property/Workspace/CurrentCamera). Also, it may render differently on low-end devices or depending on your Studio settings (see the **Quality Level** settings in **Rendering** → **Performance**).
|
|
@@ -34845,6 +34902,35 @@ interface BubbleChatConfiguration extends TextChatConfigurations {
|
|
|
34845
34902
|
VerticalStudsOffset: number;
|
|
34846
34903
|
}
|
|
34847
34904
|
|
|
34905
|
+
interface ChannelTabsConfiguration extends TextChatConfigurations {
|
|
34906
|
+
/**
|
|
34907
|
+
* **DO NOT USE!**
|
|
34908
|
+
*
|
|
34909
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
34910
|
+
* @hidden
|
|
34911
|
+
* @deprecated
|
|
34912
|
+
*/
|
|
34913
|
+
readonly _nominal_ChannelTabsConfiguration: unique symbol;
|
|
34914
|
+
/**
|
|
34915
|
+
* Tags: NotReplicated
|
|
34916
|
+
*/
|
|
34917
|
+
readonly AbsolutePosition: Vector2;
|
|
34918
|
+
/**
|
|
34919
|
+
* Tags: NotReplicated
|
|
34920
|
+
*/
|
|
34921
|
+
readonly AbsoluteSize: Vector2;
|
|
34922
|
+
BackgroundColor3: Color3;
|
|
34923
|
+
BackgroundTransparency: number;
|
|
34924
|
+
Enabled: boolean;
|
|
34925
|
+
FontFace: Font;
|
|
34926
|
+
HoverBackgroundColor3: Color3;
|
|
34927
|
+
SelectedTabTextColor3: Color3;
|
|
34928
|
+
TextColor3: Color3;
|
|
34929
|
+
TextSize: number;
|
|
34930
|
+
TextStrokeColor3: Color3;
|
|
34931
|
+
TextStrokeTransparency: number;
|
|
34932
|
+
}
|
|
34933
|
+
|
|
34848
34934
|
interface ChatInputBarConfiguration extends TextChatConfigurations {
|
|
34849
34935
|
/**
|
|
34850
34936
|
* **DO NOT USE!**
|
|
@@ -35989,6 +36075,7 @@ interface UIDragDetector extends UIComponent {
|
|
|
35989
36075
|
*/
|
|
35990
36076
|
readonly _nominal_UIDragDetector: unique symbol;
|
|
35991
36077
|
ActivatedCursorIcon: string;
|
|
36078
|
+
BoundingBehavior: Enum.UIDragDetectorBoundingBehavior;
|
|
35992
36079
|
BoundingUI: GuiBase2d | undefined;
|
|
35993
36080
|
CursorIcon: string;
|
|
35994
36081
|
DragAxis: Vector2;
|
|
@@ -272,6 +272,19 @@ interface BaseWrap extends Instance {
|
|
|
272
272
|
ImportOrigin: CFrame;
|
|
273
273
|
}
|
|
274
274
|
|
|
275
|
+
interface WrapDeformer extends BaseWrap {
|
|
276
|
+
/**
|
|
277
|
+
* **DO NOT USE!**
|
|
278
|
+
*
|
|
279
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
280
|
+
* @hidden
|
|
281
|
+
* @deprecated
|
|
282
|
+
*/
|
|
283
|
+
readonly _nominal_WrapDeformer: unique symbol;
|
|
284
|
+
Amount: number;
|
|
285
|
+
RenderMeshID: string;
|
|
286
|
+
}
|
|
287
|
+
|
|
275
288
|
interface WrapLayer extends BaseWrap {
|
|
276
289
|
/**
|
|
277
290
|
* **DO NOT USE!**
|
|
@@ -11740,9 +11740,65 @@ declare namespace Enum {
|
|
|
11740
11740
|
|
|
11741
11741
|
export const Thumbstick2: Thumbstick2;
|
|
11742
11742
|
|
|
11743
|
+
export interface MouseLeftButton extends globalThis.EnumItem {
|
|
11744
|
+
Name: "MouseLeftButton";
|
|
11745
|
+
Value: 1018;
|
|
11746
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
11747
|
+
}
|
|
11748
|
+
|
|
11749
|
+
export const MouseLeftButton: MouseLeftButton;
|
|
11750
|
+
|
|
11751
|
+
export interface MouseRightButton extends globalThis.EnumItem {
|
|
11752
|
+
Name: "MouseRightButton";
|
|
11753
|
+
Value: 1019;
|
|
11754
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
11755
|
+
}
|
|
11756
|
+
|
|
11757
|
+
export const MouseRightButton: MouseRightButton;
|
|
11758
|
+
|
|
11759
|
+
export interface MouseMiddleButton extends globalThis.EnumItem {
|
|
11760
|
+
Name: "MouseMiddleButton";
|
|
11761
|
+
Value: 1020;
|
|
11762
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
11763
|
+
}
|
|
11764
|
+
|
|
11765
|
+
export const MouseMiddleButton: MouseMiddleButton;
|
|
11766
|
+
|
|
11767
|
+
export interface MouseBackButton extends globalThis.EnumItem {
|
|
11768
|
+
Name: "MouseBackButton";
|
|
11769
|
+
Value: 1021;
|
|
11770
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
11771
|
+
}
|
|
11772
|
+
|
|
11773
|
+
export const MouseBackButton: MouseBackButton;
|
|
11774
|
+
|
|
11775
|
+
export interface MouseNoButton extends globalThis.EnumItem {
|
|
11776
|
+
Name: "MouseNoButton";
|
|
11777
|
+
Value: 1022;
|
|
11778
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
11779
|
+
}
|
|
11780
|
+
|
|
11781
|
+
export const MouseNoButton: MouseNoButton;
|
|
11782
|
+
|
|
11783
|
+
export interface MouseX extends globalThis.EnumItem {
|
|
11784
|
+
Name: "MouseX";
|
|
11785
|
+
Value: 1023;
|
|
11786
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
11787
|
+
}
|
|
11788
|
+
|
|
11789
|
+
export const MouseX: MouseX;
|
|
11790
|
+
|
|
11791
|
+
export interface MouseY extends globalThis.EnumItem {
|
|
11792
|
+
Name: "MouseY";
|
|
11793
|
+
Value: 1024;
|
|
11794
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
11795
|
+
}
|
|
11796
|
+
|
|
11797
|
+
export const MouseY: MouseY;
|
|
11798
|
+
|
|
11743
11799
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.KeyCode>;
|
|
11744
11800
|
}
|
|
11745
|
-
export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.World0 | KeyCode.World1 | KeyCode.World2 | KeyCode.World3 | KeyCode.World4 | KeyCode.World5 | KeyCode.World6 | KeyCode.World7 | KeyCode.World8 | KeyCode.World9 | KeyCode.World10 | KeyCode.World11 | KeyCode.World12 | KeyCode.World13 | KeyCode.World14 | KeyCode.World15 | KeyCode.World16 | KeyCode.World17 | KeyCode.World18 | KeyCode.World19 | KeyCode.World20 | KeyCode.World21 | KeyCode.World22 | KeyCode.World23 | KeyCode.World24 | KeyCode.World25 | KeyCode.World26 | KeyCode.World27 | KeyCode.World28 | KeyCode.World29 | KeyCode.World30 | KeyCode.World31 | KeyCode.World32 | KeyCode.World33 | KeyCode.World34 | KeyCode.World35 | KeyCode.World36 | KeyCode.World37 | KeyCode.World38 | KeyCode.World39 | KeyCode.World40 | KeyCode.World41 | KeyCode.World42 | KeyCode.World43 | KeyCode.World44 | KeyCode.World45 | KeyCode.World46 | KeyCode.World47 | KeyCode.World48 | KeyCode.World49 | KeyCode.World50 | KeyCode.World51 | KeyCode.World52 | KeyCode.World53 | KeyCode.World54 | KeyCode.World55 | KeyCode.World56 | KeyCode.World57 | KeyCode.World58 | KeyCode.World59 | KeyCode.World60 | KeyCode.World61 | KeyCode.World62 | KeyCode.World63 | KeyCode.World64 | KeyCode.World65 | KeyCode.World66 | KeyCode.World67 | KeyCode.World68 | KeyCode.World69 | KeyCode.World70 | KeyCode.World71 | KeyCode.World72 | KeyCode.World73 | KeyCode.World74 | KeyCode.World75 | KeyCode.World76 | KeyCode.World77 | KeyCode.World78 | KeyCode.World79 | KeyCode.World80 | KeyCode.World81 | KeyCode.World82 | KeyCode.World83 | KeyCode.World84 | KeyCode.World85 | KeyCode.World86 | KeyCode.World87 | KeyCode.World88 | KeyCode.World89 | KeyCode.World90 | KeyCode.World91 | KeyCode.World92 | KeyCode.World93 | KeyCode.World94 | KeyCode.World95 | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2;
|
|
11801
|
+
export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.World0 | KeyCode.World1 | KeyCode.World2 | KeyCode.World3 | KeyCode.World4 | KeyCode.World5 | KeyCode.World6 | KeyCode.World7 | KeyCode.World8 | KeyCode.World9 | KeyCode.World10 | KeyCode.World11 | KeyCode.World12 | KeyCode.World13 | KeyCode.World14 | KeyCode.World15 | KeyCode.World16 | KeyCode.World17 | KeyCode.World18 | KeyCode.World19 | KeyCode.World20 | KeyCode.World21 | KeyCode.World22 | KeyCode.World23 | KeyCode.World24 | KeyCode.World25 | KeyCode.World26 | KeyCode.World27 | KeyCode.World28 | KeyCode.World29 | KeyCode.World30 | KeyCode.World31 | KeyCode.World32 | KeyCode.World33 | KeyCode.World34 | KeyCode.World35 | KeyCode.World36 | KeyCode.World37 | KeyCode.World38 | KeyCode.World39 | KeyCode.World40 | KeyCode.World41 | KeyCode.World42 | KeyCode.World43 | KeyCode.World44 | KeyCode.World45 | KeyCode.World46 | KeyCode.World47 | KeyCode.World48 | KeyCode.World49 | KeyCode.World50 | KeyCode.World51 | KeyCode.World52 | KeyCode.World53 | KeyCode.World54 | KeyCode.World55 | KeyCode.World56 | KeyCode.World57 | KeyCode.World58 | KeyCode.World59 | KeyCode.World60 | KeyCode.World61 | KeyCode.World62 | KeyCode.World63 | KeyCode.World64 | KeyCode.World65 | KeyCode.World66 | KeyCode.World67 | KeyCode.World68 | KeyCode.World69 | KeyCode.World70 | KeyCode.World71 | KeyCode.World72 | KeyCode.World73 | KeyCode.World74 | KeyCode.World75 | KeyCode.World76 | KeyCode.World77 | KeyCode.World78 | KeyCode.World79 | KeyCode.World80 | KeyCode.World81 | KeyCode.World82 | KeyCode.World83 | KeyCode.World84 | KeyCode.World85 | KeyCode.World86 | KeyCode.World87 | KeyCode.World88 | KeyCode.World89 | KeyCode.World90 | KeyCode.World91 | KeyCode.World92 | KeyCode.World93 | KeyCode.World94 | KeyCode.World95 | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2 | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY;
|
|
11746
11802
|
|
|
11747
11803
|
export namespace KeyInterpolationMode {
|
|
11748
11804
|
export interface Constant extends globalThis.EnumItem {
|
|
@@ -16688,6 +16744,107 @@ declare namespace Enum {
|
|
|
16688
16744
|
}
|
|
16689
16745
|
export type ScrollingDirection = ScrollingDirection.X | ScrollingDirection.Y | ScrollingDirection.XY;
|
|
16690
16746
|
|
|
16747
|
+
export namespace SecurityCapability {
|
|
16748
|
+
export interface RunClientScript extends globalThis.EnumItem {
|
|
16749
|
+
Name: "RunClientScript";
|
|
16750
|
+
Value: 0;
|
|
16751
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
16752
|
+
}
|
|
16753
|
+
|
|
16754
|
+
export const RunClientScript: RunClientScript;
|
|
16755
|
+
|
|
16756
|
+
export interface RunServerScript extends globalThis.EnumItem {
|
|
16757
|
+
Name: "RunServerScript";
|
|
16758
|
+
Value: 1;
|
|
16759
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
16760
|
+
}
|
|
16761
|
+
|
|
16762
|
+
export const RunServerScript: RunServerScript;
|
|
16763
|
+
|
|
16764
|
+
export interface AccessOutsideWrite extends globalThis.EnumItem {
|
|
16765
|
+
Name: "AccessOutsideWrite";
|
|
16766
|
+
Value: 2;
|
|
16767
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
16768
|
+
}
|
|
16769
|
+
|
|
16770
|
+
export const AccessOutsideWrite: AccessOutsideWrite;
|
|
16771
|
+
|
|
16772
|
+
export interface AssetRequire extends globalThis.EnumItem {
|
|
16773
|
+
Name: "AssetRequire";
|
|
16774
|
+
Value: 3;
|
|
16775
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
16776
|
+
}
|
|
16777
|
+
|
|
16778
|
+
export const AssetRequire: AssetRequire;
|
|
16779
|
+
|
|
16780
|
+
export interface LoadString extends globalThis.EnumItem {
|
|
16781
|
+
Name: "LoadString";
|
|
16782
|
+
Value: 4;
|
|
16783
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
16784
|
+
}
|
|
16785
|
+
|
|
16786
|
+
export const LoadString: LoadString;
|
|
16787
|
+
|
|
16788
|
+
export interface ScriptGlobals extends globalThis.EnumItem {
|
|
16789
|
+
Name: "ScriptGlobals";
|
|
16790
|
+
Value: 5;
|
|
16791
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
16792
|
+
}
|
|
16793
|
+
|
|
16794
|
+
export const ScriptGlobals: ScriptGlobals;
|
|
16795
|
+
|
|
16796
|
+
export interface CreateInstances extends globalThis.EnumItem {
|
|
16797
|
+
Name: "CreateInstances";
|
|
16798
|
+
Value: 6;
|
|
16799
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
16800
|
+
}
|
|
16801
|
+
|
|
16802
|
+
export const CreateInstances: CreateInstances;
|
|
16803
|
+
|
|
16804
|
+
export interface Basic extends globalThis.EnumItem {
|
|
16805
|
+
Name: "Basic";
|
|
16806
|
+
Value: 7;
|
|
16807
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
16808
|
+
}
|
|
16809
|
+
|
|
16810
|
+
export const Basic: Basic;
|
|
16811
|
+
|
|
16812
|
+
export interface Audio extends globalThis.EnumItem {
|
|
16813
|
+
Name: "Audio";
|
|
16814
|
+
Value: 8;
|
|
16815
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
16816
|
+
}
|
|
16817
|
+
|
|
16818
|
+
export const Audio: Audio;
|
|
16819
|
+
|
|
16820
|
+
export interface DataStore extends globalThis.EnumItem {
|
|
16821
|
+
Name: "DataStore";
|
|
16822
|
+
Value: 9;
|
|
16823
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
16824
|
+
}
|
|
16825
|
+
|
|
16826
|
+
export const DataStore: DataStore;
|
|
16827
|
+
|
|
16828
|
+
export interface Network extends globalThis.EnumItem {
|
|
16829
|
+
Name: "Network";
|
|
16830
|
+
Value: 10;
|
|
16831
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
16832
|
+
}
|
|
16833
|
+
|
|
16834
|
+
export const Network: Network;
|
|
16835
|
+
|
|
16836
|
+
export interface Physics extends globalThis.EnumItem {
|
|
16837
|
+
Name: "Physics";
|
|
16838
|
+
Value: 11;
|
|
16839
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
16840
|
+
}
|
|
16841
|
+
|
|
16842
|
+
export const Physics: Physics;
|
|
16843
|
+
|
|
16844
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SecurityCapability>;
|
|
16845
|
+
}
|
|
16846
|
+
export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.AssetRequire | SecurityCapability.LoadString | SecurityCapability.ScriptGlobals | SecurityCapability.CreateInstances | SecurityCapability.Basic | SecurityCapability.Audio | SecurityCapability.DataStore | SecurityCapability.Network | SecurityCapability.Physics;
|
|
16847
|
+
|
|
16691
16848
|
export namespace SelectionBehavior {
|
|
16692
16849
|
export interface Escape extends globalThis.EnumItem {
|
|
16693
16850
|
Name: "Escape";
|
|
@@ -19370,9 +19527,17 @@ declare namespace Enum {
|
|
|
19370
19527
|
|
|
19371
19528
|
export const TeleportToVIPServer: TeleportToVIPServer;
|
|
19372
19529
|
|
|
19530
|
+
export interface TeleportToInstanceBack extends globalThis.EnumItem {
|
|
19531
|
+
Name: "TeleportToInstanceBack";
|
|
19532
|
+
Value: 5;
|
|
19533
|
+
EnumType: typeof globalThis.Enum.TeleportMethod;
|
|
19534
|
+
}
|
|
19535
|
+
|
|
19536
|
+
export const TeleportToInstanceBack: TeleportToInstanceBack;
|
|
19537
|
+
|
|
19373
19538
|
export interface TeleportUnknown extends globalThis.EnumItem {
|
|
19374
19539
|
Name: "TeleportUnknown";
|
|
19375
|
-
Value:
|
|
19540
|
+
Value: 6;
|
|
19376
19541
|
EnumType: typeof globalThis.Enum.TeleportMethod;
|
|
19377
19542
|
}
|
|
19378
19543
|
|
|
@@ -19380,7 +19545,7 @@ declare namespace Enum {
|
|
|
19380
19545
|
|
|
19381
19546
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TeleportMethod>;
|
|
19382
19547
|
}
|
|
19383
|
-
export type TeleportMethod = TeleportMethod.TeleportToSpawnByName | TeleportMethod.TeleportToPlaceInstance | TeleportMethod.TeleportToPrivateServer | TeleportMethod.TeleportPartyAsync | TeleportMethod.TeleportToVIPServer | TeleportMethod.TeleportUnknown;
|
|
19548
|
+
export type TeleportMethod = TeleportMethod.TeleportToSpawnByName | TeleportMethod.TeleportToPlaceInstance | TeleportMethod.TeleportToPrivateServer | TeleportMethod.TeleportPartyAsync | TeleportMethod.TeleportToVIPServer | TeleportMethod.TeleportToInstanceBack | TeleportMethod.TeleportUnknown;
|
|
19384
19549
|
|
|
19385
19550
|
export namespace TeleportResult {
|
|
19386
19551
|
export interface Success extends globalThis.EnumItem {
|
|
@@ -19529,9 +19694,17 @@ declare namespace Enum {
|
|
|
19529
19694
|
|
|
19530
19695
|
export const ToVIPServer: ToVIPServer;
|
|
19531
19696
|
|
|
19697
|
+
export interface ToInstanceBack extends globalThis.EnumItem {
|
|
19698
|
+
Name: "ToInstanceBack";
|
|
19699
|
+
Value: 4;
|
|
19700
|
+
EnumType: typeof globalThis.Enum.TeleportType;
|
|
19701
|
+
}
|
|
19702
|
+
|
|
19703
|
+
export const ToInstanceBack: ToInstanceBack;
|
|
19704
|
+
|
|
19532
19705
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TeleportType>;
|
|
19533
19706
|
}
|
|
19534
|
-
export type TeleportType = TeleportType.ToPlace | TeleportType.ToInstance | TeleportType.ToReservedServer | TeleportType.ToVIPServer;
|
|
19707
|
+
export type TeleportType = TeleportType.ToPlace | TeleportType.ToInstance | TeleportType.ToReservedServer | TeleportType.ToVIPServer | TeleportType.ToInstanceBack;
|
|
19535
19708
|
|
|
19536
19709
|
export namespace TerrainAcquisitionMethod {
|
|
19537
19710
|
export interface None extends globalThis.EnumItem {
|
|
@@ -20255,6 +20428,27 @@ declare namespace Enum {
|
|
|
20255
20428
|
}
|
|
20256
20429
|
export type TickCountSampleMethod = TickCountSampleMethod.Fast | TickCountSampleMethod.Benchmark | TickCountSampleMethod.Precise;
|
|
20257
20430
|
|
|
20431
|
+
export namespace TonemapperPreset {
|
|
20432
|
+
export interface Default extends globalThis.EnumItem {
|
|
20433
|
+
Name: "Default";
|
|
20434
|
+
Value: 0;
|
|
20435
|
+
EnumType: typeof globalThis.Enum.TonemapperPreset;
|
|
20436
|
+
}
|
|
20437
|
+
|
|
20438
|
+
export const Default: Default;
|
|
20439
|
+
|
|
20440
|
+
export interface Retro extends globalThis.EnumItem {
|
|
20441
|
+
Name: "Retro";
|
|
20442
|
+
Value: 1;
|
|
20443
|
+
EnumType: typeof globalThis.Enum.TonemapperPreset;
|
|
20444
|
+
}
|
|
20445
|
+
|
|
20446
|
+
export const Retro: Retro;
|
|
20447
|
+
|
|
20448
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TonemapperPreset>;
|
|
20449
|
+
}
|
|
20450
|
+
export type TonemapperPreset = TonemapperPreset.Default | TonemapperPreset.Retro;
|
|
20451
|
+
|
|
20258
20452
|
export namespace TopBottom {
|
|
20259
20453
|
export interface Top extends globalThis.EnumItem {
|
|
20260
20454
|
Name: "Top";
|
|
@@ -20752,6 +20946,35 @@ declare namespace Enum {
|
|
|
20752
20946
|
}
|
|
20753
20947
|
export type TweenStatus = TweenStatus.Canceled | TweenStatus.Completed;
|
|
20754
20948
|
|
|
20949
|
+
export namespace UIDragDetectorBoundingBehavior {
|
|
20950
|
+
export interface Automatic extends globalThis.EnumItem {
|
|
20951
|
+
Name: "Automatic";
|
|
20952
|
+
Value: 0;
|
|
20953
|
+
EnumType: typeof globalThis.Enum.UIDragDetectorBoundingBehavior;
|
|
20954
|
+
}
|
|
20955
|
+
|
|
20956
|
+
export const Automatic: Automatic;
|
|
20957
|
+
|
|
20958
|
+
export interface EntireObject extends globalThis.EnumItem {
|
|
20959
|
+
Name: "EntireObject";
|
|
20960
|
+
Value: 1;
|
|
20961
|
+
EnumType: typeof globalThis.Enum.UIDragDetectorBoundingBehavior;
|
|
20962
|
+
}
|
|
20963
|
+
|
|
20964
|
+
export const EntireObject: EntireObject;
|
|
20965
|
+
|
|
20966
|
+
export interface HitPoint extends globalThis.EnumItem {
|
|
20967
|
+
Name: "HitPoint";
|
|
20968
|
+
Value: 2;
|
|
20969
|
+
EnumType: typeof globalThis.Enum.UIDragDetectorBoundingBehavior;
|
|
20970
|
+
}
|
|
20971
|
+
|
|
20972
|
+
export const HitPoint: HitPoint;
|
|
20973
|
+
|
|
20974
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UIDragDetectorBoundingBehavior>;
|
|
20975
|
+
}
|
|
20976
|
+
export type UIDragDetectorBoundingBehavior = UIDragDetectorBoundingBehavior.Automatic | UIDragDetectorBoundingBehavior.EntireObject | UIDragDetectorBoundingBehavior.HitPoint;
|
|
20977
|
+
|
|
20755
20978
|
export namespace UIDragDetectorDragRelativity {
|
|
20756
20979
|
export interface Absolute extends globalThis.EnumItem {
|
|
20757
20980
|
Name: "Absolute";
|