@rbxts/types 1.0.938 → 1.0.940
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 +304 -53
- package/include/generated/PluginSecurity.d.ts +126 -9
- package/include/generated/enums.d.ts +587 -29
- package/package.json +1 -1
|
@@ -11958,6 +11958,60 @@ declare namespace Enum {
|
|
|
11958
11958
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DisplaySize | undefined;
|
|
11959
11959
|
}
|
|
11960
11960
|
export type DisplaySize = DisplaySize.Small | DisplaySize.Medium | DisplaySize.Large;
|
|
11961
|
+
/**
|
|
11962
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DistanceAttenuationMode)
|
|
11963
|
+
*/
|
|
11964
|
+
export namespace DistanceAttenuationMode {
|
|
11965
|
+
/**
|
|
11966
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DistanceAttenuationMode#Custom)
|
|
11967
|
+
*/
|
|
11968
|
+
export interface Custom extends globalThis.EnumItem {
|
|
11969
|
+
Name: "Custom";
|
|
11970
|
+
Value: 0;
|
|
11971
|
+
EnumType: typeof globalThis.Enum.DistanceAttenuationMode;
|
|
11972
|
+
}
|
|
11973
|
+
export const Custom: Custom;
|
|
11974
|
+
/**
|
|
11975
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DistanceAttenuationMode#InverseTapered)
|
|
11976
|
+
*/
|
|
11977
|
+
export interface InverseTapered extends globalThis.EnumItem {
|
|
11978
|
+
Name: "InverseTapered";
|
|
11979
|
+
Value: 1;
|
|
11980
|
+
EnumType: typeof globalThis.Enum.DistanceAttenuationMode;
|
|
11981
|
+
}
|
|
11982
|
+
export const InverseTapered: InverseTapered;
|
|
11983
|
+
/**
|
|
11984
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DistanceAttenuationMode#Linear)
|
|
11985
|
+
*/
|
|
11986
|
+
export interface Linear extends globalThis.EnumItem {
|
|
11987
|
+
Name: "Linear";
|
|
11988
|
+
Value: 2;
|
|
11989
|
+
EnumType: typeof globalThis.Enum.DistanceAttenuationMode;
|
|
11990
|
+
}
|
|
11991
|
+
export const Linear: Linear;
|
|
11992
|
+
/**
|
|
11993
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DistanceAttenuationMode#LinearSquared)
|
|
11994
|
+
*/
|
|
11995
|
+
export interface LinearSquared extends globalThis.EnumItem {
|
|
11996
|
+
Name: "LinearSquared";
|
|
11997
|
+
Value: 3;
|
|
11998
|
+
EnumType: typeof globalThis.Enum.DistanceAttenuationMode;
|
|
11999
|
+
}
|
|
12000
|
+
export const LinearSquared: LinearSquared;
|
|
12001
|
+
/**
|
|
12002
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DistanceAttenuationMode#Inverse)
|
|
12003
|
+
*/
|
|
12004
|
+
export interface Inverse extends globalThis.EnumItem {
|
|
12005
|
+
Name: "Inverse";
|
|
12006
|
+
Value: 4;
|
|
12007
|
+
EnumType: typeof globalThis.Enum.DistanceAttenuationMode;
|
|
12008
|
+
}
|
|
12009
|
+
export const Inverse: Inverse;
|
|
12010
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DistanceAttenuationMode>;
|
|
12011
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DistanceAttenuationMode | undefined;
|
|
12012
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DistanceAttenuationMode | undefined;
|
|
12013
|
+
}
|
|
12014
|
+
export type DistanceAttenuationMode = DistanceAttenuationMode.Custom | DistanceAttenuationMode.InverseTapered | DistanceAttenuationMode.Linear | DistanceAttenuationMode.LinearSquared | DistanceAttenuationMode.Inverse;
|
|
11961
12015
|
/**
|
|
11962
12016
|
* Specifies the type of domain that a `User` is scoped to.
|
|
11963
12017
|
*
|
|
@@ -18426,20 +18480,18 @@ declare namespace Enum {
|
|
|
18426
18480
|
*/
|
|
18427
18481
|
export namespace KeyCode {
|
|
18428
18482
|
/**
|
|
18429
|
-
*
|
|
18430
|
-
*
|
|
18431
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Unknown)
|
|
18483
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#None)
|
|
18432
18484
|
*/
|
|
18433
|
-
export interface
|
|
18434
|
-
Name: "
|
|
18485
|
+
export interface None extends globalThis.EnumItem {
|
|
18486
|
+
Name: "None";
|
|
18435
18487
|
Value: 0;
|
|
18436
18488
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
18437
18489
|
}
|
|
18438
|
-
export const
|
|
18490
|
+
export const None: None;
|
|
18439
18491
|
/**
|
|
18440
|
-
* @deprecated renamed to
|
|
18492
|
+
* @deprecated renamed to None
|
|
18441
18493
|
*/
|
|
18442
|
-
export const
|
|
18494
|
+
export const Unknown: None;
|
|
18443
18495
|
/**
|
|
18444
18496
|
* The `Backspace` key.
|
|
18445
18497
|
*
|
|
@@ -21480,11 +21532,65 @@ declare namespace Enum {
|
|
|
21480
21532
|
EnumType: typeof globalThis.Enum.KeyCode;
|
|
21481
21533
|
}
|
|
21482
21534
|
export const TouchPinch: TouchPinch;
|
|
21535
|
+
/**
|
|
21536
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonCenter)
|
|
21537
|
+
*/
|
|
21538
|
+
export interface ButtonCenter extends globalThis.EnumItem {
|
|
21539
|
+
Name: "ButtonCenter";
|
|
21540
|
+
Value: 1051;
|
|
21541
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
21542
|
+
}
|
|
21543
|
+
export const ButtonCenter: ButtonCenter;
|
|
21544
|
+
/**
|
|
21545
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonBack)
|
|
21546
|
+
*/
|
|
21547
|
+
export interface ButtonBack extends globalThis.EnumItem {
|
|
21548
|
+
Name: "ButtonBack";
|
|
21549
|
+
Value: 1052;
|
|
21550
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
21551
|
+
}
|
|
21552
|
+
export const ButtonBack: ButtonBack;
|
|
21553
|
+
/**
|
|
21554
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonUp)
|
|
21555
|
+
*/
|
|
21556
|
+
export interface ButtonUp extends globalThis.EnumItem {
|
|
21557
|
+
Name: "ButtonUp";
|
|
21558
|
+
Value: 1053;
|
|
21559
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
21560
|
+
}
|
|
21561
|
+
export const ButtonUp: ButtonUp;
|
|
21562
|
+
/**
|
|
21563
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonDown)
|
|
21564
|
+
*/
|
|
21565
|
+
export interface ButtonDown extends globalThis.EnumItem {
|
|
21566
|
+
Name: "ButtonDown";
|
|
21567
|
+
Value: 1054;
|
|
21568
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
21569
|
+
}
|
|
21570
|
+
export const ButtonDown: ButtonDown;
|
|
21571
|
+
/**
|
|
21572
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonLeft)
|
|
21573
|
+
*/
|
|
21574
|
+
export interface ButtonLeft extends globalThis.EnumItem {
|
|
21575
|
+
Name: "ButtonLeft";
|
|
21576
|
+
Value: 1055;
|
|
21577
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
21578
|
+
}
|
|
21579
|
+
export const ButtonLeft: ButtonLeft;
|
|
21580
|
+
/**
|
|
21581
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonRight)
|
|
21582
|
+
*/
|
|
21583
|
+
export interface ButtonRight extends globalThis.EnumItem {
|
|
21584
|
+
Name: "ButtonRight";
|
|
21585
|
+
Value: 1056;
|
|
21586
|
+
EnumType: typeof globalThis.Enum.KeyCode;
|
|
21587
|
+
}
|
|
21588
|
+
export const ButtonRight: ButtonRight;
|
|
21483
21589
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.KeyCode>;
|
|
21484
21590
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeyCode | undefined;
|
|
21485
21591
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeyCode | undefined;
|
|
21486
21592
|
}
|
|
21487
|
-
export type KeyCode = KeyCode.
|
|
21593
|
+
export type KeyCode = KeyCode.None | 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.Thumbstick1Up | KeyCode.Thumbstick1Down | KeyCode.Thumbstick1Left | KeyCode.Thumbstick1Right | KeyCode.Thumbstick2Up | KeyCode.Thumbstick2Down | KeyCode.Thumbstick2Left | KeyCode.Thumbstick2Right | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY | KeyCode.MousePosition | KeyCode.TouchPosition | KeyCode.MouseWheel | KeyCode.TrackpadPan | KeyCode.TrackpadPinch | KeyCode.MouseDelta | KeyCode.TouchDelta | KeyCode.TouchPinch | KeyCode.ButtonCenter | KeyCode.ButtonBack | KeyCode.ButtonUp | KeyCode.ButtonDown | KeyCode.ButtonLeft | KeyCode.ButtonRight;
|
|
21488
21594
|
/**
|
|
21489
21595
|
* Determines the string format returned by `UserInputService:GetStringForKeyCode()`.
|
|
21490
21596
|
*
|
|
@@ -21595,6 +21701,24 @@ declare namespace Enum {
|
|
|
21595
21701
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeywordFilterType | undefined;
|
|
21596
21702
|
}
|
|
21597
21703
|
export type KeywordFilterType = KeywordFilterType.Include | KeywordFilterType.Exclude;
|
|
21704
|
+
/**
|
|
21705
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KnownWindow)
|
|
21706
|
+
*/
|
|
21707
|
+
export namespace KnownWindow {
|
|
21708
|
+
/**
|
|
21709
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KnownWindow#Main)
|
|
21710
|
+
*/
|
|
21711
|
+
export interface Main extends globalThis.EnumItem {
|
|
21712
|
+
Name: "Main";
|
|
21713
|
+
Value: 0;
|
|
21714
|
+
EnumType: typeof globalThis.Enum.KnownWindow;
|
|
21715
|
+
}
|
|
21716
|
+
export const Main: Main;
|
|
21717
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.KnownWindow>;
|
|
21718
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KnownWindow | undefined;
|
|
21719
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KnownWindow | undefined;
|
|
21720
|
+
}
|
|
21721
|
+
export type KnownWindow = KnownWindow.Main;
|
|
21598
21722
|
/**
|
|
21599
21723
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/Language)
|
|
21600
21724
|
*/
|
|
@@ -25784,6 +25908,42 @@ declare namespace Enum {
|
|
|
25784
25908
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PhysicsSteppingMethod | undefined;
|
|
25785
25909
|
}
|
|
25786
25910
|
export type PhysicsSteppingMethod = PhysicsSteppingMethod.Default | PhysicsSteppingMethod.Fixed | PhysicsSteppingMethod.Adaptive;
|
|
25911
|
+
/**
|
|
25912
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PioneerSource)
|
|
25913
|
+
*/
|
|
25914
|
+
export namespace PioneerSource {
|
|
25915
|
+
/**
|
|
25916
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PioneerSource#Roblox)
|
|
25917
|
+
*/
|
|
25918
|
+
export interface Roblox extends globalThis.EnumItem {
|
|
25919
|
+
Name: "Roblox";
|
|
25920
|
+
Value: 0;
|
|
25921
|
+
EnumType: typeof globalThis.Enum.PioneerSource;
|
|
25922
|
+
}
|
|
25923
|
+
export const Roblox: Roblox;
|
|
25924
|
+
/**
|
|
25925
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PioneerSource#DaveyBazooka)
|
|
25926
|
+
*/
|
|
25927
|
+
export interface DaveyBazooka extends globalThis.EnumItem {
|
|
25928
|
+
Name: "DaveyBazooka";
|
|
25929
|
+
Value: 1;
|
|
25930
|
+
EnumType: typeof globalThis.Enum.PioneerSource;
|
|
25931
|
+
}
|
|
25932
|
+
export const DaveyBazooka: DaveyBazooka;
|
|
25933
|
+
/**
|
|
25934
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PioneerSource#Oof)
|
|
25935
|
+
*/
|
|
25936
|
+
export interface Oof extends globalThis.EnumItem {
|
|
25937
|
+
Name: "Oof";
|
|
25938
|
+
Value: 2;
|
|
25939
|
+
EnumType: typeof globalThis.Enum.PioneerSource;
|
|
25940
|
+
}
|
|
25941
|
+
export const Oof: Oof;
|
|
25942
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PioneerSource>;
|
|
25943
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PioneerSource | undefined;
|
|
25944
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PioneerSource | undefined;
|
|
25945
|
+
}
|
|
25946
|
+
export type PioneerSource = PioneerSource.Roblox | PioneerSource.DaveyBazooka | PioneerSource.Oof;
|
|
25787
25947
|
/**
|
|
25788
25948
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PlaceContentPreference)
|
|
25789
25949
|
*/
|
|
@@ -26844,6 +27004,42 @@ declare namespace Enum {
|
|
|
26844
27004
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PredictionStatus | undefined;
|
|
26845
27005
|
}
|
|
26846
27006
|
export type PredictionStatus = PredictionStatus.Authoritative | PredictionStatus.Predicted | PredictionStatus.None;
|
|
27007
|
+
/**
|
|
27008
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictiveStreamingMode)
|
|
27009
|
+
*/
|
|
27010
|
+
export namespace PredictiveStreamingMode {
|
|
27011
|
+
/**
|
|
27012
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictiveStreamingMode#Default)
|
|
27013
|
+
*/
|
|
27014
|
+
export interface Default extends globalThis.EnumItem {
|
|
27015
|
+
Name: "Default";
|
|
27016
|
+
Value: 0;
|
|
27017
|
+
EnumType: typeof globalThis.Enum.PredictiveStreamingMode;
|
|
27018
|
+
}
|
|
27019
|
+
export const Default: Default;
|
|
27020
|
+
/**
|
|
27021
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictiveStreamingMode#Enabled)
|
|
27022
|
+
*/
|
|
27023
|
+
export interface Enabled extends globalThis.EnumItem {
|
|
27024
|
+
Name: "Enabled";
|
|
27025
|
+
Value: 1;
|
|
27026
|
+
EnumType: typeof globalThis.Enum.PredictiveStreamingMode;
|
|
27027
|
+
}
|
|
27028
|
+
export const Enabled: Enabled;
|
|
27029
|
+
/**
|
|
27030
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictiveStreamingMode#Disabled)
|
|
27031
|
+
*/
|
|
27032
|
+
export interface Disabled extends globalThis.EnumItem {
|
|
27033
|
+
Name: "Disabled";
|
|
27034
|
+
Value: 2;
|
|
27035
|
+
EnumType: typeof globalThis.Enum.PredictiveStreamingMode;
|
|
27036
|
+
}
|
|
27037
|
+
export const Disabled: Disabled;
|
|
27038
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PredictiveStreamingMode>;
|
|
27039
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PredictiveStreamingMode | undefined;
|
|
27040
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PredictiveStreamingMode | undefined;
|
|
27041
|
+
}
|
|
27042
|
+
export type PredictiveStreamingMode = PredictiveStreamingMode.Default | PredictiveStreamingMode.Enabled | PredictiveStreamingMode.Disabled;
|
|
26847
27043
|
/**
|
|
26848
27044
|
* This enum is used with `UserInputService.PreferredInput` to indicate the primary input type a player is likely using.
|
|
26849
27045
|
*
|
|
@@ -26883,11 +27079,20 @@ declare namespace Enum {
|
|
|
26883
27079
|
EnumType: typeof globalThis.Enum.PreferredInput;
|
|
26884
27080
|
}
|
|
26885
27081
|
export const Touch: Touch;
|
|
27082
|
+
/**
|
|
27083
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PreferredInput#MicroGamepad)
|
|
27084
|
+
*/
|
|
27085
|
+
export interface MicroGamepad extends globalThis.EnumItem {
|
|
27086
|
+
Name: "MicroGamepad";
|
|
27087
|
+
Value: 3;
|
|
27088
|
+
EnumType: typeof globalThis.Enum.PreferredInput;
|
|
27089
|
+
}
|
|
27090
|
+
export const MicroGamepad: MicroGamepad;
|
|
26886
27091
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PreferredInput>;
|
|
26887
27092
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PreferredInput | undefined;
|
|
26888
27093
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PreferredInput | undefined;
|
|
26889
27094
|
}
|
|
26890
|
-
export type PreferredInput = PreferredInput.KeyboardAndMouse | PreferredInput.Gamepad | PreferredInput.Touch;
|
|
27095
|
+
export type PreferredInput = PreferredInput.KeyboardAndMouse | PreferredInput.Gamepad | PreferredInput.Touch | PreferredInput.MicroGamepad;
|
|
26891
27096
|
/**
|
|
26892
27097
|
* This enum is used with `GuiService.PreferredTextSize` to indicate the player's preferred text size.
|
|
26893
27098
|
*
|
|
@@ -27499,6 +27704,78 @@ declare namespace Enum {
|
|
|
27499
27704
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PromptCreateAvatarResult | undefined;
|
|
27500
27705
|
}
|
|
27501
27706
|
export type PromptCreateAvatarResult = PromptCreateAvatarResult.Success | PromptCreateAvatarResult.PermissionDenied | PromptCreateAvatarResult.Timeout | PromptCreateAvatarResult.UploadFailed | PromptCreateAvatarResult.NoUserInput | PromptCreateAvatarResult.InvalidHumanoidDescription | PromptCreateAvatarResult.UGCValidationFailed | PromptCreateAvatarResult.ModeratedName | PromptCreateAvatarResult.MaxOutfits | PromptCreateAvatarResult.PurchaseFailure | PromptCreateAvatarResult.UnknownFailure | PromptCreateAvatarResult.TokenInvalid;
|
|
27707
|
+
/**
|
|
27708
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreateOutfitResult)
|
|
27709
|
+
*/
|
|
27710
|
+
export namespace PromptCreateOutfitResult {
|
|
27711
|
+
/**
|
|
27712
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreateOutfitResult#Success)
|
|
27713
|
+
*/
|
|
27714
|
+
export interface Success extends globalThis.EnumItem {
|
|
27715
|
+
Name: "Success";
|
|
27716
|
+
Value: 1;
|
|
27717
|
+
EnumType: typeof globalThis.Enum.PromptCreateOutfitResult;
|
|
27718
|
+
}
|
|
27719
|
+
export const Success: Success;
|
|
27720
|
+
/**
|
|
27721
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreateOutfitResult#PartialSuccess)
|
|
27722
|
+
*/
|
|
27723
|
+
export interface PartialSuccess extends globalThis.EnumItem {
|
|
27724
|
+
Name: "PartialSuccess";
|
|
27725
|
+
Value: 2;
|
|
27726
|
+
EnumType: typeof globalThis.Enum.PromptCreateOutfitResult;
|
|
27727
|
+
}
|
|
27728
|
+
export const PartialSuccess: PartialSuccess;
|
|
27729
|
+
/**
|
|
27730
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreateOutfitResult#CreationFailure)
|
|
27731
|
+
*/
|
|
27732
|
+
export interface CreationFailure extends globalThis.EnumItem {
|
|
27733
|
+
Name: "CreationFailure";
|
|
27734
|
+
Value: 3;
|
|
27735
|
+
EnumType: typeof globalThis.Enum.PromptCreateOutfitResult;
|
|
27736
|
+
}
|
|
27737
|
+
export const CreationFailure: CreationFailure;
|
|
27738
|
+
/**
|
|
27739
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreateOutfitResult#PermissionDenied)
|
|
27740
|
+
*/
|
|
27741
|
+
export interface PermissionDenied extends globalThis.EnumItem {
|
|
27742
|
+
Name: "PermissionDenied";
|
|
27743
|
+
Value: 4;
|
|
27744
|
+
EnumType: typeof globalThis.Enum.PromptCreateOutfitResult;
|
|
27745
|
+
}
|
|
27746
|
+
export const PermissionDenied: PermissionDenied;
|
|
27747
|
+
/**
|
|
27748
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreateOutfitResult#Timeout)
|
|
27749
|
+
*/
|
|
27750
|
+
export interface Timeout extends globalThis.EnumItem {
|
|
27751
|
+
Name: "Timeout";
|
|
27752
|
+
Value: 5;
|
|
27753
|
+
EnumType: typeof globalThis.Enum.PromptCreateOutfitResult;
|
|
27754
|
+
}
|
|
27755
|
+
export const Timeout: Timeout;
|
|
27756
|
+
/**
|
|
27757
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreateOutfitResult#NoUserInput)
|
|
27758
|
+
*/
|
|
27759
|
+
export interface NoUserInput extends globalThis.EnumItem {
|
|
27760
|
+
Name: "NoUserInput";
|
|
27761
|
+
Value: 6;
|
|
27762
|
+
EnumType: typeof globalThis.Enum.PromptCreateOutfitResult;
|
|
27763
|
+
}
|
|
27764
|
+
export const NoUserInput: NoUserInput;
|
|
27765
|
+
/**
|
|
27766
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreateOutfitResult#UnknownFailure)
|
|
27767
|
+
*/
|
|
27768
|
+
export interface UnknownFailure extends globalThis.EnumItem {
|
|
27769
|
+
Name: "UnknownFailure";
|
|
27770
|
+
Value: 7;
|
|
27771
|
+
EnumType: typeof globalThis.Enum.PromptCreateOutfitResult;
|
|
27772
|
+
}
|
|
27773
|
+
export const UnknownFailure: UnknownFailure;
|
|
27774
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PromptCreateOutfitResult>;
|
|
27775
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PromptCreateOutfitResult | undefined;
|
|
27776
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PromptCreateOutfitResult | undefined;
|
|
27777
|
+
}
|
|
27778
|
+
export type PromptCreateOutfitResult = PromptCreateOutfitResult.Success | PromptCreateOutfitResult.PartialSuccess | PromptCreateOutfitResult.CreationFailure | PromptCreateOutfitResult.PermissionDenied | PromptCreateOutfitResult.Timeout | PromptCreateOutfitResult.NoUserInput | PromptCreateOutfitResult.UnknownFailure;
|
|
27502
27779
|
/**
|
|
27503
27780
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptExperienceDetailsResult)
|
|
27504
27781
|
*/
|
|
@@ -30917,10 +31194,14 @@ declare namespace Enum {
|
|
|
30917
31194
|
}
|
|
30918
31195
|
export type ScreenOrientation = ScreenOrientation.LandscapeLeft | ScreenOrientation.LandscapeRight | ScreenOrientation.LandscapeSensor | ScreenOrientation.Portrait | ScreenOrientation.Sensor;
|
|
30919
31196
|
/**
|
|
31197
|
+
* Describes the result of a screenshot capture initiated by `CaptureService:TakeScreenshotCaptureAsync()`.
|
|
31198
|
+
*
|
|
30920
31199
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScreenshotCaptureResult)
|
|
30921
31200
|
*/
|
|
30922
31201
|
export namespace ScreenshotCaptureResult {
|
|
30923
31202
|
/**
|
|
31203
|
+
* The screenshot capture completed successfully.
|
|
31204
|
+
*
|
|
30924
31205
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScreenshotCaptureResult#Success)
|
|
30925
31206
|
*/
|
|
30926
31207
|
export interface Success extends globalThis.EnumItem {
|
|
@@ -30930,6 +31211,8 @@ declare namespace Enum {
|
|
|
30930
31211
|
}
|
|
30931
31212
|
export const Success: Success;
|
|
30932
31213
|
/**
|
|
31214
|
+
* The screenshot capture failed due to an unspecified error.
|
|
31215
|
+
*
|
|
30933
31216
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScreenshotCaptureResult#OtherError)
|
|
30934
31217
|
*/
|
|
30935
31218
|
export interface OtherError extends globalThis.EnumItem {
|
|
@@ -30939,6 +31222,8 @@ declare namespace Enum {
|
|
|
30939
31222
|
}
|
|
30940
31223
|
export const OtherError: OtherError;
|
|
30941
31224
|
/**
|
|
31225
|
+
* The device does not support screenshot captures.
|
|
31226
|
+
*
|
|
30942
31227
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScreenshotCaptureResult#NoDeviceSupport)
|
|
30943
31228
|
*/
|
|
30944
31229
|
export interface NoDeviceSupport extends globalThis.EnumItem {
|
|
@@ -30948,6 +31233,8 @@ declare namespace Enum {
|
|
|
30948
31233
|
}
|
|
30949
31234
|
export const NoDeviceSupport: NoDeviceSupport;
|
|
30950
31235
|
/**
|
|
31236
|
+
* The device does not have enough storage space to save the screenshot capture.
|
|
31237
|
+
*
|
|
30951
31238
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ScreenshotCaptureResult#NoSpaceOnDevice)
|
|
30952
31239
|
*/
|
|
30953
31240
|
export interface NoSpaceOnDevice extends globalThis.EnumItem {
|
|
@@ -32182,10 +32469,14 @@ declare namespace Enum {
|
|
|
32182
32469
|
}
|
|
32183
32470
|
export type SizeConstraint = SizeConstraint.RelativeXY | SizeConstraint.RelativeXX | SizeConstraint.RelativeYY;
|
|
32184
32471
|
/**
|
|
32472
|
+
* Determines the color-coding mode used by the SLIM debug tint overlay in the Developer Console.
|
|
32473
|
+
*
|
|
32185
32474
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode)
|
|
32186
32475
|
*/
|
|
32187
32476
|
export namespace SlimTintMode {
|
|
32188
32477
|
/**
|
|
32478
|
+
* No tint is applied. Meshes render with their normal appearance.
|
|
32479
|
+
*
|
|
32189
32480
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#None)
|
|
32190
32481
|
*/
|
|
32191
32482
|
export interface None extends globalThis.EnumItem {
|
|
@@ -32195,6 +32486,8 @@ declare namespace Enum {
|
|
|
32195
32486
|
}
|
|
32196
32487
|
export const None: None;
|
|
32197
32488
|
/**
|
|
32489
|
+
* Colors each mesh by its current level of detail using a blue-to-red heatmap. Blue indicates the lowest detail and warmer colors indicate higher detail. Useful for verifying that distant meshes are streaming at reduced fidelity.
|
|
32490
|
+
*
|
|
32198
32491
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#LOD)
|
|
32199
32492
|
*/
|
|
32200
32493
|
export interface LOD extends globalThis.EnumItem {
|
|
@@ -32204,6 +32497,8 @@ declare namespace Enum {
|
|
|
32204
32497
|
}
|
|
32205
32498
|
export const LOD: LOD;
|
|
32206
32499
|
/**
|
|
32500
|
+
* Assigns a distinct color to each individual mesh within a model. Useful for identifying mesh boundaries and verifying how a model is split into separate mesh parts.
|
|
32501
|
+
*
|
|
32207
32502
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#Meshes)
|
|
32208
32503
|
*/
|
|
32209
32504
|
export interface Meshes extends globalThis.EnumItem {
|
|
@@ -32213,24 +32508,8 @@ declare namespace Enum {
|
|
|
32213
32508
|
}
|
|
32214
32509
|
export const Meshes: Meshes;
|
|
32215
32510
|
/**
|
|
32216
|
-
*
|
|
32217
|
-
|
|
32218
|
-
export interface MeshResourcePtr extends globalThis.EnumItem {
|
|
32219
|
-
Name: "MeshResourcePtr";
|
|
32220
|
-
Value: 3;
|
|
32221
|
-
EnumType: typeof globalThis.Enum.SlimTintMode;
|
|
32222
|
-
}
|
|
32223
|
-
export const MeshResourcePtr: MeshResourcePtr;
|
|
32224
|
-
/**
|
|
32225
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#ContentId)
|
|
32226
|
-
*/
|
|
32227
|
-
export interface ContentId extends globalThis.EnumItem {
|
|
32228
|
-
Name: "ContentId";
|
|
32229
|
-
Value: 4;
|
|
32230
|
-
EnumType: typeof globalThis.Enum.SlimTintMode;
|
|
32231
|
-
}
|
|
32232
|
-
export const ContentId: ContentId;
|
|
32233
|
-
/**
|
|
32511
|
+
* Colors meshes by streaming zone. Green indicates the high-fidelity zone where the DataModel is present.; yellow indicates the low-fidelity zone where the DataModel is absent).
|
|
32512
|
+
*
|
|
32234
32513
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SlimTintMode#Zone)
|
|
32235
32514
|
*/
|
|
32236
32515
|
export interface Zone extends globalThis.EnumItem {
|
|
@@ -32243,7 +32522,7 @@ declare namespace Enum {
|
|
|
32243
32522
|
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SlimTintMode | undefined;
|
|
32244
32523
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SlimTintMode | undefined;
|
|
32245
32524
|
}
|
|
32246
|
-
export type SlimTintMode = SlimTintMode.None | SlimTintMode.LOD | SlimTintMode.Meshes | SlimTintMode.
|
|
32525
|
+
export type SlimTintMode = SlimTintMode.None | SlimTintMode.LOD | SlimTintMode.Meshes | SlimTintMode.Zone;
|
|
32247
32526
|
/**
|
|
32248
32527
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SolidPrimitiveType)
|
|
32249
32528
|
*/
|
|
@@ -37380,6 +37659,69 @@ declare namespace Enum {
|
|
|
37380
37659
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TickCountSampleMethod | undefined;
|
|
37381
37660
|
}
|
|
37382
37661
|
export type TickCountSampleMethod = TickCountSampleMethod.Fast | TickCountSampleMethod.Benchmark | TickCountSampleMethod.Precise;
|
|
37662
|
+
/**
|
|
37663
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TitleBarControlsPosition)
|
|
37664
|
+
*/
|
|
37665
|
+
export namespace TitleBarControlsPosition {
|
|
37666
|
+
/**
|
|
37667
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TitleBarControlsPosition#Unknown)
|
|
37668
|
+
*/
|
|
37669
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
37670
|
+
Name: "Unknown";
|
|
37671
|
+
Value: 0;
|
|
37672
|
+
EnumType: typeof globalThis.Enum.TitleBarControlsPosition;
|
|
37673
|
+
}
|
|
37674
|
+
export const Unknown: Unknown;
|
|
37675
|
+
/**
|
|
37676
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TitleBarControlsPosition#Left)
|
|
37677
|
+
*/
|
|
37678
|
+
export interface Left extends globalThis.EnumItem {
|
|
37679
|
+
Name: "Left";
|
|
37680
|
+
Value: 1;
|
|
37681
|
+
EnumType: typeof globalThis.Enum.TitleBarControlsPosition;
|
|
37682
|
+
}
|
|
37683
|
+
export const Left: Left;
|
|
37684
|
+
/**
|
|
37685
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TitleBarControlsPosition#Right)
|
|
37686
|
+
*/
|
|
37687
|
+
export interface Right extends globalThis.EnumItem {
|
|
37688
|
+
Name: "Right";
|
|
37689
|
+
Value: 2;
|
|
37690
|
+
EnumType: typeof globalThis.Enum.TitleBarControlsPosition;
|
|
37691
|
+
}
|
|
37692
|
+
export const Right: Right;
|
|
37693
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TitleBarControlsPosition>;
|
|
37694
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TitleBarControlsPosition | undefined;
|
|
37695
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TitleBarControlsPosition | undefined;
|
|
37696
|
+
}
|
|
37697
|
+
export type TitleBarControlsPosition = TitleBarControlsPosition.Unknown | TitleBarControlsPosition.Left | TitleBarControlsPosition.Right;
|
|
37698
|
+
/**
|
|
37699
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TitleBarMode)
|
|
37700
|
+
*/
|
|
37701
|
+
export namespace TitleBarMode {
|
|
37702
|
+
/**
|
|
37703
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TitleBarMode#Native)
|
|
37704
|
+
*/
|
|
37705
|
+
export interface Native extends globalThis.EnumItem {
|
|
37706
|
+
Name: "Native";
|
|
37707
|
+
Value: 0;
|
|
37708
|
+
EnumType: typeof globalThis.Enum.TitleBarMode;
|
|
37709
|
+
}
|
|
37710
|
+
export const Native: Native;
|
|
37711
|
+
/**
|
|
37712
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TitleBarMode#Custom)
|
|
37713
|
+
*/
|
|
37714
|
+
export interface Custom extends globalThis.EnumItem {
|
|
37715
|
+
Name: "Custom";
|
|
37716
|
+
Value: 1;
|
|
37717
|
+
EnumType: typeof globalThis.Enum.TitleBarMode;
|
|
37718
|
+
}
|
|
37719
|
+
export const Custom: Custom;
|
|
37720
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TitleBarMode>;
|
|
37721
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.TitleBarMode | undefined;
|
|
37722
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.TitleBarMode | undefined;
|
|
37723
|
+
}
|
|
37724
|
+
export type TitleBarMode = TitleBarMode.Native | TitleBarMode.Custom;
|
|
37383
37725
|
/**
|
|
37384
37726
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/TonemapperPreset)
|
|
37385
37727
|
*/
|
|
@@ -38718,6 +39060,114 @@ declare namespace Enum {
|
|
|
38718
39060
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UsageContext | undefined;
|
|
38719
39061
|
}
|
|
38720
39062
|
export type UsageContext = UsageContext.Default | UsageContext.Preview;
|
|
39063
|
+
/**
|
|
39064
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserAcquisitionSource)
|
|
39065
|
+
*/
|
|
39066
|
+
export namespace UserAcquisitionSource {
|
|
39067
|
+
/**
|
|
39068
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserAcquisitionSource#Unknown)
|
|
39069
|
+
*/
|
|
39070
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
39071
|
+
Name: "Unknown";
|
|
39072
|
+
Value: 0;
|
|
39073
|
+
EnumType: typeof globalThis.Enum.UserAcquisitionSource;
|
|
39074
|
+
}
|
|
39075
|
+
export const Unknown: Unknown;
|
|
39076
|
+
/**
|
|
39077
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserAcquisitionSource#PendingAttribution)
|
|
39078
|
+
*/
|
|
39079
|
+
export interface PendingAttribution extends globalThis.EnumItem {
|
|
39080
|
+
Name: "PendingAttribution";
|
|
39081
|
+
Value: 1;
|
|
39082
|
+
EnumType: typeof globalThis.Enum.UserAcquisitionSource;
|
|
39083
|
+
}
|
|
39084
|
+
export const PendingAttribution: PendingAttribution;
|
|
39085
|
+
/**
|
|
39086
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserAcquisitionSource#HomeRecommendation)
|
|
39087
|
+
*/
|
|
39088
|
+
export interface HomeRecommendation extends globalThis.EnumItem {
|
|
39089
|
+
Name: "HomeRecommendation";
|
|
39090
|
+
Value: 2;
|
|
39091
|
+
EnumType: typeof globalThis.Enum.UserAcquisitionSource;
|
|
39092
|
+
}
|
|
39093
|
+
export const HomeRecommendation: HomeRecommendation;
|
|
39094
|
+
/**
|
|
39095
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserAcquisitionSource#ContinueToPlay)
|
|
39096
|
+
*/
|
|
39097
|
+
export interface ContinueToPlay extends globalThis.EnumItem {
|
|
39098
|
+
Name: "ContinueToPlay";
|
|
39099
|
+
Value: 3;
|
|
39100
|
+
EnumType: typeof globalThis.Enum.UserAcquisitionSource;
|
|
39101
|
+
}
|
|
39102
|
+
export const ContinueToPlay: ContinueToPlay;
|
|
39103
|
+
/**
|
|
39104
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserAcquisitionSource#Curation)
|
|
39105
|
+
*/
|
|
39106
|
+
export interface Curation extends globalThis.EnumItem {
|
|
39107
|
+
Name: "Curation";
|
|
39108
|
+
Value: 4;
|
|
39109
|
+
EnumType: typeof globalThis.Enum.UserAcquisitionSource;
|
|
39110
|
+
}
|
|
39111
|
+
export const Curation: Curation;
|
|
39112
|
+
/**
|
|
39113
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserAcquisitionSource#Friends)
|
|
39114
|
+
*/
|
|
39115
|
+
export interface Friends extends globalThis.EnumItem {
|
|
39116
|
+
Name: "Friends";
|
|
39117
|
+
Value: 5;
|
|
39118
|
+
EnumType: typeof globalThis.Enum.UserAcquisitionSource;
|
|
39119
|
+
}
|
|
39120
|
+
export const Friends: Friends;
|
|
39121
|
+
/**
|
|
39122
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserAcquisitionSource#Search)
|
|
39123
|
+
*/
|
|
39124
|
+
export interface Search extends globalThis.EnumItem {
|
|
39125
|
+
Name: "Search";
|
|
39126
|
+
Value: 6;
|
|
39127
|
+
EnumType: typeof globalThis.Enum.UserAcquisitionSource;
|
|
39128
|
+
}
|
|
39129
|
+
export const Search: Search;
|
|
39130
|
+
/**
|
|
39131
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserAcquisitionSource#Teleport)
|
|
39132
|
+
*/
|
|
39133
|
+
export interface Teleport extends globalThis.EnumItem {
|
|
39134
|
+
Name: "Teleport";
|
|
39135
|
+
Value: 7;
|
|
39136
|
+
EnumType: typeof globalThis.Enum.UserAcquisitionSource;
|
|
39137
|
+
}
|
|
39138
|
+
export const Teleport: Teleport;
|
|
39139
|
+
/**
|
|
39140
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserAcquisitionSource#Ads)
|
|
39141
|
+
*/
|
|
39142
|
+
export interface Ads extends globalThis.EnumItem {
|
|
39143
|
+
Name: "Ads";
|
|
39144
|
+
Value: 8;
|
|
39145
|
+
EnumType: typeof globalThis.Enum.UserAcquisitionSource;
|
|
39146
|
+
}
|
|
39147
|
+
export const Ads: Ads;
|
|
39148
|
+
/**
|
|
39149
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserAcquisitionSource#HomeOther)
|
|
39150
|
+
*/
|
|
39151
|
+
export interface HomeOther extends globalThis.EnumItem {
|
|
39152
|
+
Name: "HomeOther";
|
|
39153
|
+
Value: 9;
|
|
39154
|
+
EnumType: typeof globalThis.Enum.UserAcquisitionSource;
|
|
39155
|
+
}
|
|
39156
|
+
export const HomeOther: HomeOther;
|
|
39157
|
+
/**
|
|
39158
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserAcquisitionSource#Other)
|
|
39159
|
+
*/
|
|
39160
|
+
export interface Other extends globalThis.EnumItem {
|
|
39161
|
+
Name: "Other";
|
|
39162
|
+
Value: 10;
|
|
39163
|
+
EnumType: typeof globalThis.Enum.UserAcquisitionSource;
|
|
39164
|
+
}
|
|
39165
|
+
export const Other: Other;
|
|
39166
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UserAcquisitionSource>;
|
|
39167
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UserAcquisitionSource | undefined;
|
|
39168
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UserAcquisitionSource | undefined;
|
|
39169
|
+
}
|
|
39170
|
+
export type UserAcquisitionSource = UserAcquisitionSource.Unknown | UserAcquisitionSource.PendingAttribution | UserAcquisitionSource.HomeRecommendation | UserAcquisitionSource.ContinueToPlay | UserAcquisitionSource.Curation | UserAcquisitionSource.Friends | UserAcquisitionSource.Search | UserAcquisitionSource.Teleport | UserAcquisitionSource.Ads | UserAcquisitionSource.HomeOther | UserAcquisitionSource.Other;
|
|
38721
39171
|
/**
|
|
38722
39172
|
* Determines what body part is being tracked by a VR device, and what its CFrame actually is.
|
|
38723
39173
|
*
|
|
@@ -38771,6 +39221,42 @@ declare namespace Enum {
|
|
|
38771
39221
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UserCFrame | undefined;
|
|
38772
39222
|
}
|
|
38773
39223
|
export type UserCFrame = UserCFrame.Head | UserCFrame.LeftHand | UserCFrame.RightHand | UserCFrame.Floor;
|
|
39224
|
+
/**
|
|
39225
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserIdMode)
|
|
39226
|
+
*/
|
|
39227
|
+
export namespace UserIdMode {
|
|
39228
|
+
/**
|
|
39229
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserIdMode#Invalid)
|
|
39230
|
+
*/
|
|
39231
|
+
export interface Invalid extends globalThis.EnumItem {
|
|
39232
|
+
Name: "Invalid";
|
|
39233
|
+
Value: 0;
|
|
39234
|
+
EnumType: typeof globalThis.Enum.UserIdMode;
|
|
39235
|
+
}
|
|
39236
|
+
export const Invalid: Invalid;
|
|
39237
|
+
/**
|
|
39238
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserIdMode#Global)
|
|
39239
|
+
*/
|
|
39240
|
+
export interface Global extends globalThis.EnumItem {
|
|
39241
|
+
Name: "Global";
|
|
39242
|
+
Value: 1;
|
|
39243
|
+
EnumType: typeof globalThis.Enum.UserIdMode;
|
|
39244
|
+
}
|
|
39245
|
+
export const Global: Global;
|
|
39246
|
+
/**
|
|
39247
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserIdMode#Domain)
|
|
39248
|
+
*/
|
|
39249
|
+
export interface Domain extends globalThis.EnumItem {
|
|
39250
|
+
Name: "Domain";
|
|
39251
|
+
Value: 2;
|
|
39252
|
+
EnumType: typeof globalThis.Enum.UserIdMode;
|
|
39253
|
+
}
|
|
39254
|
+
export const Domain: Domain;
|
|
39255
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UserIdMode>;
|
|
39256
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UserIdMode | undefined;
|
|
39257
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UserIdMode | undefined;
|
|
39258
|
+
}
|
|
39259
|
+
export type UserIdMode = UserIdMode.Invalid | UserIdMode.Global | UserIdMode.Domain;
|
|
38774
39260
|
/**
|
|
38775
39261
|
* This enum describes the state of an input that is currently or was recently performed.
|
|
38776
39262
|
*
|
|
@@ -39079,6 +39565,42 @@ declare namespace Enum {
|
|
|
39079
39565
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UserInputType | undefined;
|
|
39080
39566
|
}
|
|
39081
39567
|
export type UserInputType = UserInputType.MouseButton1 | UserInputType.MouseButton2 | UserInputType.MouseButton3 | UserInputType.MouseWheel | UserInputType.MouseMovement | UserInputType.Touch | UserInputType.Keyboard | UserInputType.Focus | UserInputType.Accelerometer | UserInputType.Gyro | UserInputType.Gamepad1 | UserInputType.Gamepad2 | UserInputType.Gamepad3 | UserInputType.Gamepad4 | UserInputType.Gamepad5 | UserInputType.Gamepad6 | UserInputType.Gamepad7 | UserInputType.Gamepad8 | UserInputType.TextInput | UserInputType.InputMethod | UserInputType.None;
|
|
39568
|
+
/**
|
|
39569
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserReturnStatus)
|
|
39570
|
+
*/
|
|
39571
|
+
export namespace UserReturnStatus {
|
|
39572
|
+
/**
|
|
39573
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserReturnStatus#Unknown)
|
|
39574
|
+
*/
|
|
39575
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
39576
|
+
Name: "Unknown";
|
|
39577
|
+
Value: 0;
|
|
39578
|
+
EnumType: typeof globalThis.Enum.UserReturnStatus;
|
|
39579
|
+
}
|
|
39580
|
+
export const Unknown: Unknown;
|
|
39581
|
+
/**
|
|
39582
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserReturnStatus#New)
|
|
39583
|
+
*/
|
|
39584
|
+
export interface New extends globalThis.EnumItem {
|
|
39585
|
+
Name: "New";
|
|
39586
|
+
Value: 1;
|
|
39587
|
+
EnumType: typeof globalThis.Enum.UserReturnStatus;
|
|
39588
|
+
}
|
|
39589
|
+
export const New: New;
|
|
39590
|
+
/**
|
|
39591
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/UserReturnStatus#Returning)
|
|
39592
|
+
*/
|
|
39593
|
+
export interface Returning extends globalThis.EnumItem {
|
|
39594
|
+
Name: "Returning";
|
|
39595
|
+
Value: 2;
|
|
39596
|
+
EnumType: typeof globalThis.Enum.UserReturnStatus;
|
|
39597
|
+
}
|
|
39598
|
+
export const Returning: Returning;
|
|
39599
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.UserReturnStatus>;
|
|
39600
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.UserReturnStatus | undefined;
|
|
39601
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.UserReturnStatus | undefined;
|
|
39602
|
+
}
|
|
39603
|
+
export type UserReturnStatus = UserReturnStatus.Unknown | UserReturnStatus.New | UserReturnStatus.Returning;
|
|
39082
39604
|
/**
|
|
39083
39605
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VRComfortSetting)
|
|
39084
39606
|
*/
|
|
@@ -40885,6 +41407,42 @@ declare namespace Enum {
|
|
|
40885
41407
|
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WhisperChatPrivacyMode | undefined;
|
|
40886
41408
|
}
|
|
40887
41409
|
export type WhisperChatPrivacyMode = WhisperChatPrivacyMode.AllUsers | WhisperChatPrivacyMode.NoOne;
|
|
41410
|
+
/**
|
|
41411
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WindowState)
|
|
41412
|
+
*/
|
|
41413
|
+
export namespace WindowState {
|
|
41414
|
+
/**
|
|
41415
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WindowState#Normal)
|
|
41416
|
+
*/
|
|
41417
|
+
export interface Normal extends globalThis.EnumItem {
|
|
41418
|
+
Name: "Normal";
|
|
41419
|
+
Value: 0;
|
|
41420
|
+
EnumType: typeof globalThis.Enum.WindowState;
|
|
41421
|
+
}
|
|
41422
|
+
export const Normal: Normal;
|
|
41423
|
+
/**
|
|
41424
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WindowState#Minimized)
|
|
41425
|
+
*/
|
|
41426
|
+
export interface Minimized extends globalThis.EnumItem {
|
|
41427
|
+
Name: "Minimized";
|
|
41428
|
+
Value: 1;
|
|
41429
|
+
EnumType: typeof globalThis.Enum.WindowState;
|
|
41430
|
+
}
|
|
41431
|
+
export const Minimized: Minimized;
|
|
41432
|
+
/**
|
|
41433
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WindowState#Maximized)
|
|
41434
|
+
*/
|
|
41435
|
+
export interface Maximized extends globalThis.EnumItem {
|
|
41436
|
+
Name: "Maximized";
|
|
41437
|
+
Value: 2;
|
|
41438
|
+
EnumType: typeof globalThis.Enum.WindowState;
|
|
41439
|
+
}
|
|
41440
|
+
export const Maximized: Maximized;
|
|
41441
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.WindowState>;
|
|
41442
|
+
export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.WindowState | undefined;
|
|
41443
|
+
export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.WindowState | undefined;
|
|
41444
|
+
}
|
|
41445
|
+
export type WindowState = WindowState.Normal | WindowState.Minimized | WindowState.Maximized;
|
|
40888
41446
|
/**
|
|
40889
41447
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/WrapLayerAutoSkin)
|
|
40890
41448
|
*/
|