@rbxts/types 1.0.916 → 1.0.918
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/include/generated/None.d.ts +219 -45
- package/include/generated/PluginSecurity.d.ts +145 -19
- package/include/generated/enums.d.ts +135 -66
- package/package.json +1 -1
|
@@ -2368,6 +2368,39 @@ declare namespace Enum {
|
|
|
2368
2368
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnnotationRequestType | undefined;
|
|
2369
2369
|
}
|
|
2370
2370
|
export type AnnotationRequestType = AnnotationRequestType.Unknown | AnnotationRequestType.Create | AnnotationRequestType.Resolve | AnnotationRequestType.Delete | AnnotationRequestType.Edit;
|
|
2371
|
+
/**
|
|
2372
|
+
* Determines whether anti-aliasing is applied when drawing on the instance.
|
|
2373
|
+
*
|
|
2374
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AntiAliasing)
|
|
2375
|
+
*/
|
|
2376
|
+
export namespace AntiAliasing {
|
|
2377
|
+
/**
|
|
2378
|
+
* Disables anti-aliasing, resulting in hard edges.
|
|
2379
|
+
*
|
|
2380
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AntiAliasing#Disabled)
|
|
2381
|
+
*/
|
|
2382
|
+
export interface Disabled extends globalThis.EnumItem {
|
|
2383
|
+
Name: "Disabled";
|
|
2384
|
+
Value: 0;
|
|
2385
|
+
EnumType: typeof globalThis.Enum.AntiAliasing;
|
|
2386
|
+
}
|
|
2387
|
+
export const Disabled: Disabled;
|
|
2388
|
+
/**
|
|
2389
|
+
* Enables anti-aliasing, resulting in soft edges.
|
|
2390
|
+
*
|
|
2391
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AntiAliasing#Enabled)
|
|
2392
|
+
*/
|
|
2393
|
+
export interface Enabled extends globalThis.EnumItem {
|
|
2394
|
+
Name: "Enabled";
|
|
2395
|
+
Value: 1;
|
|
2396
|
+
EnumType: typeof globalThis.Enum.AntiAliasing;
|
|
2397
|
+
}
|
|
2398
|
+
export const Enabled: Enabled;
|
|
2399
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AntiAliasing>;
|
|
2400
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AntiAliasing | undefined;
|
|
2401
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AntiAliasing | undefined;
|
|
2402
|
+
}
|
|
2403
|
+
export type AntiAliasing = AntiAliasing.Disabled | AntiAliasing.Enabled;
|
|
2371
2404
|
/**
|
|
2372
2405
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppLifecycleManagerState)
|
|
2373
2406
|
*/
|
|
@@ -2516,11 +2549,20 @@ declare namespace Enum {
|
|
|
2516
2549
|
EnumType: typeof globalThis.Enum.AppShellActionType;
|
|
2517
2550
|
}
|
|
2518
2551
|
export const AvatarEditorPageLoaded: AvatarEditorPageLoaded;
|
|
2552
|
+
/**
|
|
2553
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppShellActionType#HomePageInteractive)
|
|
2554
|
+
*/
|
|
2555
|
+
export interface HomePageInteractive extends globalThis.EnumItem {
|
|
2556
|
+
Name: "HomePageInteractive";
|
|
2557
|
+
Value: 11;
|
|
2558
|
+
EnumType: typeof globalThis.Enum.AppShellActionType;
|
|
2559
|
+
}
|
|
2560
|
+
export const HomePageInteractive: HomePageInteractive;
|
|
2519
2561
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AppShellActionType>;
|
|
2520
2562
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AppShellActionType | undefined;
|
|
2521
2563
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AppShellActionType | undefined;
|
|
2522
2564
|
}
|
|
2523
|
-
export type AppShellActionType = AppShellActionType.None | AppShellActionType.OpenApp | AppShellActionType.TapChatTab | AppShellActionType.TapConversationEntry | AppShellActionType.TapAvatarTab | AppShellActionType.ReadConversation | AppShellActionType.TapGamePageTab | AppShellActionType.TapHomePageTab | AppShellActionType.GamePageLoaded | AppShellActionType.HomePageLoaded | AppShellActionType.AvatarEditorPageLoaded;
|
|
2565
|
+
export type AppShellActionType = AppShellActionType.None | AppShellActionType.OpenApp | AppShellActionType.TapChatTab | AppShellActionType.TapConversationEntry | AppShellActionType.TapAvatarTab | AppShellActionType.ReadConversation | AppShellActionType.TapGamePageTab | AppShellActionType.TapHomePageTab | AppShellActionType.GamePageLoaded | AppShellActionType.HomePageLoaded | AppShellActionType.AvatarEditorPageLoaded | AppShellActionType.HomePageInteractive;
|
|
2524
2566
|
/**
|
|
2525
2567
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppShellFeature)
|
|
2526
2568
|
*/
|
|
@@ -7283,7 +7325,7 @@ declare namespace Enum {
|
|
|
7283
7325
|
}
|
|
7284
7326
|
export const NoOne: NoOne;
|
|
7285
7327
|
/**
|
|
7286
|
-
* A player can only chat with users in a game that are on their
|
|
7328
|
+
* A player can only chat with users in a game that are on their friends list.
|
|
7287
7329
|
*
|
|
7288
7330
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ChatPrivacyMode#Friends)
|
|
7289
7331
|
*/
|
|
@@ -12569,19 +12611,23 @@ declare namespace Enum {
|
|
|
12569
12611
|
}
|
|
12570
12612
|
export const SystemDefault: SystemDefault;
|
|
12571
12613
|
/**
|
|
12572
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExternalEditorMode#
|
|
12614
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExternalEditorMode#UserSelectedEditor)
|
|
12573
12615
|
*/
|
|
12574
|
-
export interface
|
|
12575
|
-
Name: "
|
|
12616
|
+
export interface UserSelectedEditor extends globalThis.EnumItem {
|
|
12617
|
+
Name: "UserSelectedEditor";
|
|
12576
12618
|
Value: 1;
|
|
12577
12619
|
EnumType: typeof globalThis.Enum.ExternalEditorMode;
|
|
12578
12620
|
}
|
|
12579
|
-
export const
|
|
12621
|
+
export const UserSelectedEditor: UserSelectedEditor;
|
|
12622
|
+
/**
|
|
12623
|
+
* @deprecated renamed to UserSelectedEditor
|
|
12624
|
+
*/
|
|
12625
|
+
export const CustomEditor: UserSelectedEditor;
|
|
12580
12626
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExternalEditorMode>;
|
|
12581
12627
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExternalEditorMode | undefined;
|
|
12582
12628
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExternalEditorMode | undefined;
|
|
12583
12629
|
}
|
|
12584
|
-
export type ExternalEditorMode = ExternalEditorMode.SystemDefault | ExternalEditorMode.
|
|
12630
|
+
export type ExternalEditorMode = ExternalEditorMode.SystemDefault | ExternalEditorMode.UserSelectedEditor;
|
|
12585
12631
|
/**
|
|
12586
12632
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FACSDataLod)
|
|
12587
12633
|
*/
|
|
@@ -14754,7 +14800,7 @@ declare namespace Enum {
|
|
|
14754
14800
|
*/
|
|
14755
14801
|
export namespace FriendRequestEvent {
|
|
14756
14802
|
/**
|
|
14757
|
-
* A player invokes (sends) a
|
|
14803
|
+
* A player invokes (sends) a friend request.
|
|
14758
14804
|
*
|
|
14759
14805
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendRequestEvent#Issue)
|
|
14760
14806
|
*/
|
|
@@ -14765,7 +14811,7 @@ declare namespace Enum {
|
|
|
14765
14811
|
}
|
|
14766
14812
|
export const Issue: Issue;
|
|
14767
14813
|
/**
|
|
14768
|
-
* A player revokes (cancels) a previously invoked (sent)
|
|
14814
|
+
* A player revokes (cancels) a previously invoked (sent) friend request.
|
|
14769
14815
|
*
|
|
14770
14816
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendRequestEvent#Revoke)
|
|
14771
14817
|
*/
|
|
@@ -14776,7 +14822,7 @@ declare namespace Enum {
|
|
|
14776
14822
|
}
|
|
14777
14823
|
export const Revoke: Revoke;
|
|
14778
14824
|
/**
|
|
14779
|
-
* A player accepts a
|
|
14825
|
+
* A player accepts a friend request.
|
|
14780
14826
|
*
|
|
14781
14827
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendRequestEvent#Accept)
|
|
14782
14828
|
*/
|
|
@@ -14787,7 +14833,7 @@ declare namespace Enum {
|
|
|
14787
14833
|
}
|
|
14788
14834
|
export const Accept: Accept;
|
|
14789
14835
|
/**
|
|
14790
|
-
* A player denies a
|
|
14836
|
+
* A player denies a friend request.
|
|
14791
14837
|
*
|
|
14792
14838
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendRequestEvent#Deny)
|
|
14793
14839
|
*/
|
|
@@ -14807,7 +14853,7 @@ declare namespace Enum {
|
|
|
14807
14853
|
*/
|
|
14808
14854
|
export namespace FriendStatus {
|
|
14809
14855
|
/**
|
|
14810
|
-
* The
|
|
14856
|
+
* The friend status of two players is unknown.
|
|
14811
14857
|
*
|
|
14812
14858
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendStatus#Unknown)
|
|
14813
14859
|
*/
|
|
@@ -14818,7 +14864,7 @@ declare namespace Enum {
|
|
|
14818
14864
|
}
|
|
14819
14865
|
export const Unknown: Unknown;
|
|
14820
14866
|
/**
|
|
14821
|
-
* Two players are not
|
|
14867
|
+
* Two players are not friends.
|
|
14822
14868
|
*
|
|
14823
14869
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendStatus#NotFriend)
|
|
14824
14870
|
*/
|
|
@@ -14829,7 +14875,7 @@ declare namespace Enum {
|
|
|
14829
14875
|
}
|
|
14830
14876
|
export const NotFriend: NotFriend;
|
|
14831
14877
|
/**
|
|
14832
|
-
* Two players are
|
|
14878
|
+
* Two players are friends.
|
|
14833
14879
|
*
|
|
14834
14880
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendStatus#Friend)
|
|
14835
14881
|
*/
|
|
@@ -14840,7 +14886,7 @@ declare namespace Enum {
|
|
|
14840
14886
|
}
|
|
14841
14887
|
export const Friend: Friend;
|
|
14842
14888
|
/**
|
|
14843
|
-
* At least one of two players has sent a
|
|
14889
|
+
* At least one of two players has sent a friend request to the other player.
|
|
14844
14890
|
*
|
|
14845
14891
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendStatus#FriendRequestSent)
|
|
14846
14892
|
*/
|
|
@@ -14851,7 +14897,7 @@ declare namespace Enum {
|
|
|
14851
14897
|
}
|
|
14852
14898
|
export const FriendRequestSent: FriendRequestSent;
|
|
14853
14899
|
/**
|
|
14854
|
-
* At least one of two players has received a
|
|
14900
|
+
* At least one of two players has received a friend request sent by the other player.
|
|
14855
14901
|
*
|
|
14856
14902
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FriendStatus#FriendRequestReceived)
|
|
14857
14903
|
*/
|
|
@@ -19518,14 +19564,18 @@ declare namespace Enum {
|
|
|
19518
19564
|
/**
|
|
19519
19565
|
* The position of a touch in the viewport. Primarily used in the [Input Action System](../../../input/input-action-system.md).
|
|
19520
19566
|
*
|
|
19521
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#
|
|
19567
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#TouchPosition)
|
|
19522
19568
|
*/
|
|
19523
|
-
export interface
|
|
19524
|
-
Name: "
|
|
19569
|
+
export interface TouchPosition extends globalThis.EnumItem {
|
|
19570
|
+
Name: "TouchPosition";
|
|
19525
19571
|
Value: 1034;
|
|
19526
19572
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
19527
19573
|
}
|
|
19528
|
-
export const
|
|
19574
|
+
export const TouchPosition: TouchPosition;
|
|
19575
|
+
/**
|
|
19576
|
+
* @deprecated renamed to TouchPosition
|
|
19577
|
+
*/
|
|
19578
|
+
export const Touch: TouchPosition;
|
|
19529
19579
|
/**
|
|
19530
19580
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseWheel)
|
|
19531
19581
|
*/
|
|
@@ -19562,6 +19612,24 @@ declare namespace Enum {
|
|
|
19562
19612
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
19563
19613
|
}
|
|
19564
19614
|
export const MouseDelta: MouseDelta;
|
|
19615
|
+
/**
|
|
19616
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#TouchDelta)
|
|
19617
|
+
*/
|
|
19618
|
+
export interface TouchDelta extends globalThis.EnumItem {
|
|
19619
|
+
Name: "TouchDelta";
|
|
19620
|
+
Value: 1049;
|
|
19621
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
19622
|
+
}
|
|
19623
|
+
export const TouchDelta: TouchDelta;
|
|
19624
|
+
/**
|
|
19625
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#TouchPinch)
|
|
19626
|
+
*/
|
|
19627
|
+
export interface TouchPinch extends globalThis.EnumItem {
|
|
19628
|
+
Name: "TouchPinch";
|
|
19629
|
+
Value: 1050;
|
|
19630
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
19631
|
+
}
|
|
19632
|
+
export const TouchPinch: TouchPinch;
|
|
19565
19633
|
/**
|
|
19566
19634
|
* **Deprecated:**
|
|
19567
19635
|
*
|
|
@@ -20666,7 +20734,7 @@ declare namespace Enum {
|
|
|
20666
20734
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeyCode | undefined;
|
|
20667
20735
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeyCode | undefined;
|
|
20668
20736
|
}
|
|
20669
|
-
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.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.Thumbstick1Up | KeyCode.Thumbstick1Down | KeyCode.Thumbstick1Left | KeyCode.Thumbstick1Right | KeyCode.Thumbstick2Up | KeyCode.Thumbstick2Down | KeyCode.Thumbstick2Left | KeyCode.Thumbstick2Right | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MousePosition | KeyCode.
|
|
20737
|
+
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.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.Thumbstick1Up | KeyCode.Thumbstick1Down | KeyCode.Thumbstick1Left | KeyCode.Thumbstick1Right | KeyCode.Thumbstick2Up | KeyCode.Thumbstick2Down | KeyCode.Thumbstick2Left | KeyCode.Thumbstick2Right | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MousePosition | KeyCode.TouchPosition | KeyCode.MouseWheel | KeyCode.TrackpadPan | KeyCode.TrackpadPinch | KeyCode.MouseDelta | KeyCode.TouchDelta | KeyCode.TouchPinch | 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.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY;
|
|
20670
20738
|
/**
|
|
20671
20739
|
* Describes the interpolation method between two keys.
|
|
20672
20740
|
*
|
|
@@ -22563,11 +22631,56 @@ declare namespace Enum {
|
|
|
22563
22631
|
EnumType: typeof globalThis.Enum.MeshPartDetailLevel;
|
|
22564
22632
|
}
|
|
22565
22633
|
export const Level04: Level04;
|
|
22634
|
+
/**
|
|
22635
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshPartDetailLevel#Level05)
|
|
22636
|
+
*/
|
|
22637
|
+
export interface Level05 extends globalThis.EnumItem {
|
|
22638
|
+
Name: "Level05";
|
|
22639
|
+
Value: 6;
|
|
22640
|
+
EnumType: typeof globalThis.Enum.MeshPartDetailLevel;
|
|
22641
|
+
}
|
|
22642
|
+
export const Level05: Level05;
|
|
22643
|
+
/**
|
|
22644
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshPartDetailLevel#Level06)
|
|
22645
|
+
*/
|
|
22646
|
+
export interface Level06 extends globalThis.EnumItem {
|
|
22647
|
+
Name: "Level06";
|
|
22648
|
+
Value: 7;
|
|
22649
|
+
EnumType: typeof globalThis.Enum.MeshPartDetailLevel;
|
|
22650
|
+
}
|
|
22651
|
+
export const Level06: Level06;
|
|
22652
|
+
/**
|
|
22653
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshPartDetailLevel#Level07)
|
|
22654
|
+
*/
|
|
22655
|
+
export interface Level07 extends globalThis.EnumItem {
|
|
22656
|
+
Name: "Level07";
|
|
22657
|
+
Value: 8;
|
|
22658
|
+
EnumType: typeof globalThis.Enum.MeshPartDetailLevel;
|
|
22659
|
+
}
|
|
22660
|
+
export const Level07: Level07;
|
|
22661
|
+
/**
|
|
22662
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshPartDetailLevel#Level08)
|
|
22663
|
+
*/
|
|
22664
|
+
export interface Level08 extends globalThis.EnumItem {
|
|
22665
|
+
Name: "Level08";
|
|
22666
|
+
Value: 9;
|
|
22667
|
+
EnumType: typeof globalThis.Enum.MeshPartDetailLevel;
|
|
22668
|
+
}
|
|
22669
|
+
export const Level08: Level08;
|
|
22670
|
+
/**
|
|
22671
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MeshPartDetailLevel#Level09)
|
|
22672
|
+
*/
|
|
22673
|
+
export interface Level09 extends globalThis.EnumItem {
|
|
22674
|
+
Name: "Level09";
|
|
22675
|
+
Value: 10;
|
|
22676
|
+
EnumType: typeof globalThis.Enum.MeshPartDetailLevel;
|
|
22677
|
+
}
|
|
22678
|
+
export const Level09: Level09;
|
|
22566
22679
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MeshPartDetailLevel>;
|
|
22567
22680
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MeshPartDetailLevel | undefined;
|
|
22568
22681
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MeshPartDetailLevel | undefined;
|
|
22569
22682
|
}
|
|
22570
|
-
export type MeshPartDetailLevel = MeshPartDetailLevel.DistanceBased | MeshPartDetailLevel.Level00 | MeshPartDetailLevel.Level01 | MeshPartDetailLevel.Level02 | MeshPartDetailLevel.Level03 | MeshPartDetailLevel.Level04;
|
|
22683
|
+
export type MeshPartDetailLevel = MeshPartDetailLevel.DistanceBased | MeshPartDetailLevel.Level00 | MeshPartDetailLevel.Level01 | MeshPartDetailLevel.Level02 | MeshPartDetailLevel.Level03 | MeshPartDetailLevel.Level04 | MeshPartDetailLevel.Level05 | MeshPartDetailLevel.Level06 | MeshPartDetailLevel.Level07 | MeshPartDetailLevel.Level08 | MeshPartDetailLevel.Level09;
|
|
22571
22684
|
/**
|
|
22572
22685
|
* Controls the `Workspace.MeshPartHeadsAndAccessories` feature.
|
|
22573
22686
|
*
|
|
@@ -23405,50 +23518,6 @@ declare namespace Enum {
|
|
|
23405
23518
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MoveState | undefined;
|
|
23406
23519
|
}
|
|
23407
23520
|
export type MoveState = MoveState.Stopped | MoveState.Coasting | MoveState.Pushing | MoveState.Stopping | MoveState.AirFree;
|
|
23408
|
-
/**
|
|
23409
|
-
* Values for `Workspace.MoverConstraintRootBehavior`. Controls the logic for selecting the assembly root part when using various mover constraints.
|
|
23410
|
-
*
|
|
23411
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MoverConstraintRootBehaviorMode)
|
|
23412
|
-
*/
|
|
23413
|
-
export namespace MoverConstraintRootBehaviorMode {
|
|
23414
|
-
/**
|
|
23415
|
-
* The default option for `Workspace.MoverConstraintRootBehavior`. Currently set to **Disabled**.
|
|
23416
|
-
*
|
|
23417
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MoverConstraintRootBehaviorMode#Default)
|
|
23418
|
-
*/
|
|
23419
|
-
export interface Default extends globalThis.EnumItem {
|
|
23420
|
-
Name: "Default";
|
|
23421
|
-
Value: 0;
|
|
23422
|
-
EnumType: typeof globalThis.Enum.MoverConstraintRootBehaviorMode;
|
|
23423
|
-
}
|
|
23424
|
-
export const Default: Default;
|
|
23425
|
-
/**
|
|
23426
|
-
* The legacy logic will be used for assembly root part selection when a mechanism contains a mover constraint.
|
|
23427
|
-
*
|
|
23428
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MoverConstraintRootBehaviorMode#Disabled)
|
|
23429
|
-
*/
|
|
23430
|
-
export interface Disabled extends globalThis.EnumItem {
|
|
23431
|
-
Name: "Disabled";
|
|
23432
|
-
Value: 1;
|
|
23433
|
-
EnumType: typeof globalThis.Enum.MoverConstraintRootBehaviorMode;
|
|
23434
|
-
}
|
|
23435
|
-
export const Disabled: Disabled;
|
|
23436
|
-
/**
|
|
23437
|
-
* Improved logic will be used for assembly root part selection when a mechanism contains a mover constraint. This improved logic gives more consistent behavior when compared with other constraints or the deprecated `BodyMover` classes.
|
|
23438
|
-
*
|
|
23439
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MoverConstraintRootBehaviorMode#Enabled)
|
|
23440
|
-
*/
|
|
23441
|
-
export interface Enabled extends globalThis.EnumItem {
|
|
23442
|
-
Name: "Enabled";
|
|
23443
|
-
Value: 2;
|
|
23444
|
-
EnumType: typeof globalThis.Enum.MoverConstraintRootBehaviorMode;
|
|
23445
|
-
}
|
|
23446
|
-
export const Enabled: Enabled;
|
|
23447
|
-
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MoverConstraintRootBehaviorMode>;
|
|
23448
|
-
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MoverConstraintRootBehaviorMode | undefined;
|
|
23449
|
-
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MoverConstraintRootBehaviorMode | undefined;
|
|
23450
|
-
}
|
|
23451
|
-
export type MoverConstraintRootBehaviorMode = MoverConstraintRootBehaviorMode.Default | MoverConstraintRootBehaviorMode.Disabled | MoverConstraintRootBehaviorMode.Enabled;
|
|
23452
23521
|
/**
|
|
23453
23522
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MuteState)
|
|
23454
23523
|
*/
|