@rbxts/types 1.0.852 → 1.0.854
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 +463 -174
- package/include/generated/PluginSecurity.d.ts +98 -14
- package/include/generated/enums.d.ts +181 -40
- package/package.json +1 -1
|
@@ -3193,10 +3193,14 @@ declare namespace Enum {
|
|
|
3193
3193
|
}
|
|
3194
3194
|
export type AudioFilterType = AudioFilterType.Peak | AudioFilterType.LowShelf | AudioFilterType.HighShelf | AudioFilterType.Lowpass12dB | AudioFilterType.Lowpass24dB | AudioFilterType.Lowpass48dB | AudioFilterType.Highpass12dB | AudioFilterType.Highpass24dB | AudioFilterType.Highpass48dB | AudioFilterType.Bandpass | AudioFilterType.Notch | AudioFilterType.Lowpass6dB;
|
|
3195
3195
|
/**
|
|
3196
|
+
* Enum which determines how detailed audio simulation should be for `AudioEmitters` and `AudioListeners`.
|
|
3197
|
+
*
|
|
3196
3198
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSimulationFidelity)
|
|
3197
3199
|
*/
|
|
3198
3200
|
export namespace AudioSimulationFidelity {
|
|
3199
3201
|
/**
|
|
3202
|
+
* No acoustic simulation occurs; only direction and distance are taken into account.
|
|
3203
|
+
*
|
|
3200
3204
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSimulationFidelity#None)
|
|
3201
3205
|
*/
|
|
3202
3206
|
export interface None extends globalThis.EnumItem {
|
|
@@ -3206,6 +3210,8 @@ declare namespace Enum {
|
|
|
3206
3210
|
}
|
|
3207
3211
|
export const None: None;
|
|
3208
3212
|
/**
|
|
3213
|
+
* The audio engine simulates transmission, diffraction, and reflections at a level of detail suitable to most devices.
|
|
3214
|
+
*
|
|
3209
3215
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AudioSimulationFidelity#Automatic)
|
|
3210
3216
|
*/
|
|
3211
3217
|
export interface Automatic extends globalThis.EnumItem {
|
|
@@ -5634,6 +5640,33 @@ declare namespace Enum {
|
|
|
5634
5640
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CameraType | undefined;
|
|
5635
5641
|
}
|
|
5636
5642
|
export type CameraType = CameraType.Fixed | CameraType.Attach | CameraType.Watch | CameraType.Track | CameraType.Follow | CameraType.Custom | CameraType.Scriptable | CameraType.Orbital;
|
|
5643
|
+
/**
|
|
5644
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureType)
|
|
5645
|
+
*/
|
|
5646
|
+
export namespace CaptureType {
|
|
5647
|
+
/**
|
|
5648
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureType#Screenshot)
|
|
5649
|
+
*/
|
|
5650
|
+
export interface Screenshot extends globalThis.EnumItem {
|
|
5651
|
+
Name: "Screenshot";
|
|
5652
|
+
Value: 0;
|
|
5653
|
+
EnumType: typeof globalThis.Enum.CaptureType;
|
|
5654
|
+
}
|
|
5655
|
+
export const Screenshot: Screenshot;
|
|
5656
|
+
/**
|
|
5657
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CaptureType#Video)
|
|
5658
|
+
*/
|
|
5659
|
+
export interface Video extends globalThis.EnumItem {
|
|
5660
|
+
Name: "Video";
|
|
5661
|
+
Value: 1;
|
|
5662
|
+
EnumType: typeof globalThis.Enum.CaptureType;
|
|
5663
|
+
}
|
|
5664
|
+
export const Video: Video;
|
|
5665
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CaptureType>;
|
|
5666
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CaptureType | undefined;
|
|
5667
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CaptureType | undefined;
|
|
5668
|
+
}
|
|
5669
|
+
export type CaptureType = CaptureType.Screenshot | CaptureType.Video;
|
|
5637
5670
|
/**
|
|
5638
5671
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CatalogCategoryFilter)
|
|
5639
5672
|
*/
|
|
@@ -8511,7 +8544,7 @@ declare namespace Enum {
|
|
|
8511
8544
|
}
|
|
8512
8545
|
export type CurrencyType = CurrencyType.Default | CurrencyType.Robux | CurrencyType.Tix;
|
|
8513
8546
|
/**
|
|
8514
|
-
* Changes the player's camera mode
|
|
8547
|
+
* Changes the player's camera mode.
|
|
8515
8548
|
*
|
|
8516
8549
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CustomCameraMode)
|
|
8517
8550
|
*/
|
|
@@ -13581,6 +13614,42 @@ declare namespace Enum {
|
|
|
13581
13614
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.GuiType | undefined;
|
|
13582
13615
|
}
|
|
13583
13616
|
export type GuiType = GuiType.Core | GuiType.Custom | GuiType.PlayerNameplates | GuiType.CustomBillboards | GuiType.CoreBillboards;
|
|
13617
|
+
/**
|
|
13618
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HandRigDescriptionSide)
|
|
13619
|
+
*/
|
|
13620
|
+
export namespace HandRigDescriptionSide {
|
|
13621
|
+
/**
|
|
13622
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HandRigDescriptionSide#None)
|
|
13623
|
+
*/
|
|
13624
|
+
export interface None extends globalThis.EnumItem {
|
|
13625
|
+
Name: "None";
|
|
13626
|
+
Value: 0;
|
|
13627
|
+
EnumType: typeof globalThis.Enum.HandRigDescriptionSide;
|
|
13628
|
+
}
|
|
13629
|
+
export const None: None;
|
|
13630
|
+
/**
|
|
13631
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HandRigDescriptionSide#Left)
|
|
13632
|
+
*/
|
|
13633
|
+
export interface Left extends globalThis.EnumItem {
|
|
13634
|
+
Name: "Left";
|
|
13635
|
+
Value: 1;
|
|
13636
|
+
EnumType: typeof globalThis.Enum.HandRigDescriptionSide;
|
|
13637
|
+
}
|
|
13638
|
+
export const Left: Left;
|
|
13639
|
+
/**
|
|
13640
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HandRigDescriptionSide#Right)
|
|
13641
|
+
*/
|
|
13642
|
+
export interface Right extends globalThis.EnumItem {
|
|
13643
|
+
Name: "Right";
|
|
13644
|
+
Value: 2;
|
|
13645
|
+
EnumType: typeof globalThis.Enum.HandRigDescriptionSide;
|
|
13646
|
+
}
|
|
13647
|
+
export const Right: Right;
|
|
13648
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.HandRigDescriptionSide>;
|
|
13649
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.HandRigDescriptionSide | undefined;
|
|
13650
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.HandRigDescriptionSide | undefined;
|
|
13651
|
+
}
|
|
13652
|
+
export type HandRigDescriptionSide = HandRigDescriptionSide.None | HandRigDescriptionSide.Left | HandRigDescriptionSide.Right;
|
|
13584
13653
|
/**
|
|
13585
13654
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HandlesStyle)
|
|
13586
13655
|
*/
|
|
@@ -14190,7 +14259,7 @@ declare namespace Enum {
|
|
|
14190
14259
|
}
|
|
14191
14260
|
export type HttpRequestType = HttpRequestType.Default | HttpRequestType.MarketplaceService | HttpRequestType.Players | HttpRequestType.Chat | HttpRequestType.Avatar | HttpRequestType.Analytics | HttpRequestType.Localization;
|
|
14192
14261
|
/**
|
|
14193
|
-
* The collision `Humanoid` uses.
|
|
14262
|
+
* The collision `Humanoid` uses.
|
|
14194
14263
|
*
|
|
14195
14264
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/HumanoidCollisionType)
|
|
14196
14265
|
*/
|
|
@@ -17139,6 +17208,39 @@ declare namespace Enum {
|
|
|
17139
17208
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17140
17209
|
}
|
|
17141
17210
|
export const Thumbstick2: Thumbstick2;
|
|
17211
|
+
/**
|
|
17212
|
+
* **Deprecated:**
|
|
17213
|
+
*
|
|
17214
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseLeftButton)
|
|
17215
|
+
*/
|
|
17216
|
+
export interface MouseLeftButton extends globalThis.EnumItem {
|
|
17217
|
+
Name: "MouseLeftButton";
|
|
17218
|
+
Value: 1018;
|
|
17219
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17220
|
+
}
|
|
17221
|
+
export const MouseLeftButton: MouseLeftButton;
|
|
17222
|
+
/**
|
|
17223
|
+
* **Deprecated:**
|
|
17224
|
+
*
|
|
17225
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseRightButton)
|
|
17226
|
+
*/
|
|
17227
|
+
export interface MouseRightButton extends globalThis.EnumItem {
|
|
17228
|
+
Name: "MouseRightButton";
|
|
17229
|
+
Value: 1019;
|
|
17230
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17231
|
+
}
|
|
17232
|
+
export const MouseRightButton: MouseRightButton;
|
|
17233
|
+
/**
|
|
17234
|
+
* **Deprecated:**
|
|
17235
|
+
*
|
|
17236
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseMiddleButton)
|
|
17237
|
+
*/
|
|
17238
|
+
export interface MouseMiddleButton extends globalThis.EnumItem {
|
|
17239
|
+
Name: "MouseMiddleButton";
|
|
17240
|
+
Value: 1020;
|
|
17241
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
17242
|
+
}
|
|
17243
|
+
export const MouseMiddleButton: MouseMiddleButton;
|
|
17142
17244
|
/**
|
|
17143
17245
|
* **Deprecated:**
|
|
17144
17246
|
*
|
|
@@ -18195,39 +18297,6 @@ declare namespace Enum {
|
|
|
18195
18297
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18196
18298
|
}
|
|
18197
18299
|
export const World95: World95;
|
|
18198
|
-
/**
|
|
18199
|
-
* **Deprecated:** This enum is deprecated and flagged for removal.
|
|
18200
|
-
*
|
|
18201
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseLeftButton)
|
|
18202
|
-
*/
|
|
18203
|
-
export interface MouseLeftButton extends globalThis.EnumItem {
|
|
18204
|
-
Name: "MouseLeftButton";
|
|
18205
|
-
Value: 1018;
|
|
18206
|
-
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18207
|
-
}
|
|
18208
|
-
export const MouseLeftButton: MouseLeftButton;
|
|
18209
|
-
/**
|
|
18210
|
-
* **Deprecated:** This enum is deprecated and flagged for removal.
|
|
18211
|
-
*
|
|
18212
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseRightButton)
|
|
18213
|
-
*/
|
|
18214
|
-
export interface MouseRightButton extends globalThis.EnumItem {
|
|
18215
|
-
Name: "MouseRightButton";
|
|
18216
|
-
Value: 1019;
|
|
18217
|
-
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18218
|
-
}
|
|
18219
|
-
export const MouseRightButton: MouseRightButton;
|
|
18220
|
-
/**
|
|
18221
|
-
* **Deprecated:** This enum is deprecated and flagged for removal.
|
|
18222
|
-
*
|
|
18223
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseMiddleButton)
|
|
18224
|
-
*/
|
|
18225
|
-
export interface MouseMiddleButton extends globalThis.EnumItem {
|
|
18226
|
-
Name: "MouseMiddleButton";
|
|
18227
|
-
Value: 1020;
|
|
18228
|
-
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18229
|
-
}
|
|
18230
|
-
export const MouseMiddleButton: MouseMiddleButton;
|
|
18231
18300
|
/**
|
|
18232
18301
|
* **Deprecated:** This enum is deprecated and flagged for removal.
|
|
18233
18302
|
*
|
|
@@ -18276,7 +18345,7 @@ declare namespace Enum {
|
|
|
18276
18345
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeyCode | undefined;
|
|
18277
18346
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeyCode | undefined;
|
|
18278
18347
|
}
|
|
18279
|
-
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.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.
|
|
18348
|
+
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.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | 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;
|
|
18280
18349
|
/**
|
|
18281
18350
|
* Describes the interpolation method between two keys.
|
|
18282
18351
|
*
|
|
@@ -20884,6 +20953,42 @@ declare namespace Enum {
|
|
|
20884
20953
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.NameOcclusion | undefined;
|
|
20885
20954
|
}
|
|
20886
20955
|
export type NameOcclusion = NameOcclusion.NoOcclusion | NameOcclusion.EnemyOcclusion | NameOcclusion.OccludeAll;
|
|
20956
|
+
/**
|
|
20957
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/NegateOperationHiddenHistory)
|
|
20958
|
+
*/
|
|
20959
|
+
export namespace NegateOperationHiddenHistory {
|
|
20960
|
+
/**
|
|
20961
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/NegateOperationHiddenHistory#None)
|
|
20962
|
+
*/
|
|
20963
|
+
export interface None extends globalThis.EnumItem {
|
|
20964
|
+
Name: "None";
|
|
20965
|
+
Value: 0;
|
|
20966
|
+
EnumType: typeof globalThis.Enum.NegateOperationHiddenHistory;
|
|
20967
|
+
}
|
|
20968
|
+
export const None: None;
|
|
20969
|
+
/**
|
|
20970
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/NegateOperationHiddenHistory#NegatedUnion)
|
|
20971
|
+
*/
|
|
20972
|
+
export interface NegatedUnion extends globalThis.EnumItem {
|
|
20973
|
+
Name: "NegatedUnion";
|
|
20974
|
+
Value: 1;
|
|
20975
|
+
EnumType: typeof globalThis.Enum.NegateOperationHiddenHistory;
|
|
20976
|
+
}
|
|
20977
|
+
export const NegatedUnion: NegatedUnion;
|
|
20978
|
+
/**
|
|
20979
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/NegateOperationHiddenHistory#NegatedIntersection)
|
|
20980
|
+
*/
|
|
20981
|
+
export interface NegatedIntersection extends globalThis.EnumItem {
|
|
20982
|
+
Name: "NegatedIntersection";
|
|
20983
|
+
Value: 2;
|
|
20984
|
+
EnumType: typeof globalThis.Enum.NegateOperationHiddenHistory;
|
|
20985
|
+
}
|
|
20986
|
+
export const NegatedIntersection: NegatedIntersection;
|
|
20987
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.NegateOperationHiddenHistory>;
|
|
20988
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.NegateOperationHiddenHistory | undefined;
|
|
20989
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.NegateOperationHiddenHistory | undefined;
|
|
20990
|
+
}
|
|
20991
|
+
export type NegateOperationHiddenHistory = NegateOperationHiddenHistory.None | NegateOperationHiddenHistory.NegatedUnion | NegateOperationHiddenHistory.NegatedIntersection;
|
|
20887
20992
|
/**
|
|
20888
20993
|
* Defines how simulation authority is determined for the Network Ownership Unit/Mechanism this part is attached to.
|
|
20889
20994
|
*
|
|
@@ -26678,6 +26783,8 @@ declare namespace Enum {
|
|
|
26678
26783
|
*/
|
|
26679
26784
|
export namespace StateObjectFieldType {
|
|
26680
26785
|
/**
|
|
26786
|
+
* **Deprecated:**
|
|
26787
|
+
*
|
|
26681
26788
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#Boolean)
|
|
26682
26789
|
*/
|
|
26683
26790
|
export interface Boolean extends globalThis.EnumItem {
|
|
@@ -26687,6 +26794,8 @@ declare namespace Enum {
|
|
|
26687
26794
|
}
|
|
26688
26795
|
export const Boolean: Boolean;
|
|
26689
26796
|
/**
|
|
26797
|
+
* **Deprecated:**
|
|
26798
|
+
*
|
|
26690
26799
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#CFrame)
|
|
26691
26800
|
*/
|
|
26692
26801
|
export interface CFrame extends globalThis.EnumItem {
|
|
@@ -26696,6 +26805,8 @@ declare namespace Enum {
|
|
|
26696
26805
|
}
|
|
26697
26806
|
export const CFrame: CFrame;
|
|
26698
26807
|
/**
|
|
26808
|
+
* **Deprecated:**
|
|
26809
|
+
*
|
|
26699
26810
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#Color3)
|
|
26700
26811
|
*/
|
|
26701
26812
|
export interface Color3 extends globalThis.EnumItem {
|
|
@@ -26705,6 +26816,8 @@ declare namespace Enum {
|
|
|
26705
26816
|
}
|
|
26706
26817
|
export const Color3: Color3;
|
|
26707
26818
|
/**
|
|
26819
|
+
* **Deprecated:**
|
|
26820
|
+
*
|
|
26708
26821
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#Float)
|
|
26709
26822
|
*/
|
|
26710
26823
|
export interface Float extends globalThis.EnumItem {
|
|
@@ -26714,6 +26827,8 @@ declare namespace Enum {
|
|
|
26714
26827
|
}
|
|
26715
26828
|
export const Float: Float;
|
|
26716
26829
|
/**
|
|
26830
|
+
* **Deprecated:**
|
|
26831
|
+
*
|
|
26717
26832
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#Instance)
|
|
26718
26833
|
*/
|
|
26719
26834
|
export interface Instance extends globalThis.EnumItem {
|
|
@@ -26723,6 +26838,8 @@ declare namespace Enum {
|
|
|
26723
26838
|
}
|
|
26724
26839
|
export const Instance: Instance;
|
|
26725
26840
|
/**
|
|
26841
|
+
* **Deprecated:**
|
|
26842
|
+
*
|
|
26726
26843
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#Random)
|
|
26727
26844
|
*/
|
|
26728
26845
|
export interface Random extends globalThis.EnumItem {
|
|
@@ -26732,6 +26849,8 @@ declare namespace Enum {
|
|
|
26732
26849
|
}
|
|
26733
26850
|
export const Random: Random;
|
|
26734
26851
|
/**
|
|
26852
|
+
* **Deprecated:**
|
|
26853
|
+
*
|
|
26735
26854
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#Vector2)
|
|
26736
26855
|
*/
|
|
26737
26856
|
export interface Vector2 extends globalThis.EnumItem {
|
|
@@ -26741,6 +26860,8 @@ declare namespace Enum {
|
|
|
26741
26860
|
}
|
|
26742
26861
|
export const Vector2: Vector2;
|
|
26743
26862
|
/**
|
|
26863
|
+
* **Deprecated:**
|
|
26864
|
+
*
|
|
26744
26865
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#Vector3)
|
|
26745
26866
|
*/
|
|
26746
26867
|
export interface Vector3 extends globalThis.EnumItem {
|
|
@@ -26750,6 +26871,8 @@ declare namespace Enum {
|
|
|
26750
26871
|
}
|
|
26751
26872
|
export const Vector3: Vector3;
|
|
26752
26873
|
/**
|
|
26874
|
+
* **Deprecated:**
|
|
26875
|
+
*
|
|
26753
26876
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StateObjectFieldType#INVALID)
|
|
26754
26877
|
*/
|
|
26755
26878
|
export interface INVALID extends globalThis.EnumItem {
|
|
@@ -27810,7 +27933,7 @@ declare namespace Enum {
|
|
|
27810
27933
|
}
|
|
27811
27934
|
export const CategoryItem: CategoryItem;
|
|
27812
27935
|
/**
|
|
27813
|
-
* The color of items within tables in the
|
|
27936
|
+
* The color of items within tables in the settings window.
|
|
27814
27937
|
*
|
|
27815
27938
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#GameSettingsTableItem)
|
|
27816
27939
|
*/
|
|
@@ -27821,7 +27944,7 @@ declare namespace Enum {
|
|
|
27821
27944
|
}
|
|
27822
27945
|
export const GameSettingsTableItem: GameSettingsTableItem;
|
|
27823
27946
|
/**
|
|
27824
|
-
* The color of tooltips in the
|
|
27947
|
+
* The color of tooltips in the settings window.
|
|
27825
27948
|
*
|
|
27826
27949
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StudioStyleGuideColor#GameSettingsTooltip)
|
|
27827
27950
|
*/
|
|
@@ -33986,11 +34109,20 @@ declare namespace Enum {
|
|
|
33986
34109
|
EnumType: typeof globalThis.Enum.WrapLayerDebugMode;
|
|
33987
34110
|
}
|
|
33988
34111
|
export const LayerCageFittedToPrev: LayerCageFittedToPrev;
|
|
34112
|
+
/**
|
|
34113
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WrapLayerDebugMode#PreWrapDeformerOuterCage)
|
|
34114
|
+
*/
|
|
34115
|
+
export interface PreWrapDeformerOuterCage extends globalThis.EnumItem {
|
|
34116
|
+
Name: "PreWrapDeformerOuterCage";
|
|
34117
|
+
Value: 14;
|
|
34118
|
+
EnumType: typeof globalThis.Enum.WrapLayerDebugMode;
|
|
34119
|
+
}
|
|
34120
|
+
export const PreWrapDeformerOuterCage: PreWrapDeformerOuterCage;
|
|
33989
34121
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WrapLayerDebugMode>;
|
|
33990
34122
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WrapLayerDebugMode | undefined;
|
|
33991
34123
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WrapLayerDebugMode | undefined;
|
|
33992
34124
|
}
|
|
33993
|
-
export type WrapLayerDebugMode = WrapLayerDebugMode.None | WrapLayerDebugMode.BoundCage | WrapLayerDebugMode.LayerCage | WrapLayerDebugMode.BoundCageAndLinks | WrapLayerDebugMode.Reference | WrapLayerDebugMode.Rbf | WrapLayerDebugMode.OuterCage | WrapLayerDebugMode.ReferenceMeshAfterMorph | WrapLayerDebugMode.HSROuterDetail | WrapLayerDebugMode.HSROuter | WrapLayerDebugMode.HSRInner | WrapLayerDebugMode.HSRInnerReverse | WrapLayerDebugMode.LayerCageFittedToBase | WrapLayerDebugMode.LayerCageFittedToPrev;
|
|
34125
|
+
export type WrapLayerDebugMode = WrapLayerDebugMode.None | WrapLayerDebugMode.BoundCage | WrapLayerDebugMode.LayerCage | WrapLayerDebugMode.BoundCageAndLinks | WrapLayerDebugMode.Reference | WrapLayerDebugMode.Rbf | WrapLayerDebugMode.OuterCage | WrapLayerDebugMode.ReferenceMeshAfterMorph | WrapLayerDebugMode.HSROuterDetail | WrapLayerDebugMode.HSROuter | WrapLayerDebugMode.HSRInner | WrapLayerDebugMode.HSRInnerReverse | WrapLayerDebugMode.LayerCageFittedToBase | WrapLayerDebugMode.LayerCageFittedToPrev | WrapLayerDebugMode.PreWrapDeformerOuterCage;
|
|
33994
34126
|
/**
|
|
33995
34127
|
* The Studio-only property for quickly visualizing and debugging meshes with only outer cages.
|
|
33996
34128
|
*
|
|
@@ -34094,11 +34226,20 @@ declare namespace Enum {
|
|
|
34094
34226
|
EnumType: typeof globalThis.Enum.WrapTargetDebugMode;
|
|
34095
34227
|
}
|
|
34096
34228
|
export const OuterCageDetail: OuterCageDetail;
|
|
34229
|
+
/**
|
|
34230
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WrapTargetDebugMode#PreWrapDeformerCage)
|
|
34231
|
+
*/
|
|
34232
|
+
export interface PreWrapDeformerCage extends globalThis.EnumItem {
|
|
34233
|
+
Name: "PreWrapDeformerCage";
|
|
34234
|
+
Value: 9;
|
|
34235
|
+
EnumType: typeof globalThis.Enum.WrapTargetDebugMode;
|
|
34236
|
+
}
|
|
34237
|
+
export const PreWrapDeformerCage: PreWrapDeformerCage;
|
|
34097
34238
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WrapTargetDebugMode>;
|
|
34098
34239
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WrapTargetDebugMode | undefined;
|
|
34099
34240
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WrapTargetDebugMode | undefined;
|
|
34100
34241
|
}
|
|
34101
|
-
export type WrapTargetDebugMode = WrapTargetDebugMode.None | WrapTargetDebugMode.TargetCageOriginal | WrapTargetDebugMode.TargetCageCompressed | WrapTargetDebugMode.TargetCageInterface | WrapTargetDebugMode.TargetLayerCageOriginal | WrapTargetDebugMode.TargetLayerCageCompressed | WrapTargetDebugMode.TargetLayerInterface | WrapTargetDebugMode.Rbf | WrapTargetDebugMode.OuterCageDetail;
|
|
34242
|
+
export type WrapTargetDebugMode = WrapTargetDebugMode.None | WrapTargetDebugMode.TargetCageOriginal | WrapTargetDebugMode.TargetCageCompressed | WrapTargetDebugMode.TargetCageInterface | WrapTargetDebugMode.TargetLayerCageOriginal | WrapTargetDebugMode.TargetLayerCageCompressed | WrapTargetDebugMode.TargetLayerInterface | WrapTargetDebugMode.Rbf | WrapTargetDebugMode.OuterCageDetail | WrapTargetDebugMode.PreWrapDeformerCage;
|
|
34102
34243
|
/**
|
|
34103
34244
|
* Used by `LayerCollector.ZIndexBehavior` to control how the `GuiObject.ZIndex` property behaves for descendants.
|
|
34104
34245
|
*
|