@rbxts/types 1.0.788 → 1.0.790

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.
@@ -6,7 +6,7 @@
6
6
 
7
7
  interface Services {
8
8
  AccountService: AccountService;
9
- ActivityHistoryService: ActivityHistoryService;
9
+ AchievementService: AchievementService;
10
10
  AnalyticsService: AnalyticsService;
11
11
  AnimationClipProvider: AnimationClipProvider;
12
12
  AnimationFromVideoCreatorService: AnimationFromVideoCreatorService;
@@ -204,6 +204,7 @@ interface CreatableInstances {
204
204
  AnimationController: AnimationController;
205
205
  AnimationRigData: AnimationRigData;
206
206
  Animator: Animator;
207
+ Annotation: Annotation;
207
208
  ArcHandles: ArcHandles;
208
209
  Atmosphere: Atmosphere;
209
210
  AtmosphereSensor: AtmosphereSensor;
@@ -218,6 +219,7 @@ interface CreatableInstances {
218
219
  AudioEmitter: AudioEmitter;
219
220
  AudioEqualizer: AudioEqualizer;
220
221
  AudioFader: AudioFader;
222
+ AudioFilter: AudioFilter;
221
223
  AudioFlanger: AudioFlanger;
222
224
  AudioListener: AudioListener;
223
225
  AudioPitchShifter: AudioPitchShifter;
@@ -258,6 +260,7 @@ interface CreatableInstances {
258
260
  Clouds: Clouds;
259
261
  Color3Value: Color3Value;
260
262
  ColorCorrectionEffect: ColorCorrectionEffect;
263
+ ColorGradingEffect: ColorGradingEffect;
261
264
  CompressorSoundEffect: CompressorSoundEffect;
262
265
  ConeHandleAdornment: ConeHandleAdornment;
263
266
  Configuration: Configuration;
@@ -459,7 +462,9 @@ interface CreatableInstances {
459
462
  WeldConstraint: WeldConstraint;
460
463
  Wire: Wire;
461
464
  WireframeHandleAdornment: WireframeHandleAdornment;
465
+ WorkspaceAnnotation: WorkspaceAnnotation;
462
466
  WorldModel: WorldModel;
467
+ WrapDeformer: WrapDeformer;
463
468
  WrapLayer: WrapLayer;
464
469
  WrapTarget: WrapTarget;
465
470
  }
@@ -1377,7 +1382,7 @@ interface Hat extends Accoutrement {
1377
1382
  readonly _nominal_Hat: unique symbol;
1378
1383
  }
1379
1384
 
1380
- interface ActivityHistoryService extends Instance {
1385
+ interface AchievementService extends Instance {
1381
1386
  /**
1382
1387
  * **DO NOT USE!**
1383
1388
  *
@@ -1385,8 +1390,7 @@ interface ActivityHistoryService extends Instance {
1385
1390
  * @hidden
1386
1391
  * @deprecated
1387
1392
  */
1388
- readonly _nominal_ActivityHistoryService: unique symbol;
1389
- readonly EventNotificationReceived: RBXScriptSignal<() => void>;
1393
+ readonly _nominal_AchievementService: unique symbol;
1390
1394
  }
1391
1395
 
1392
1396
  interface AdPortal extends Instance {
@@ -2276,6 +2280,28 @@ interface Animator extends Instance {
2276
2280
  readonly AnimationPlayed: RBXScriptSignal<(animationTrack: AnimationTrack) => void>;
2277
2281
  }
2278
2282
 
2283
+ interface Annotation extends Instance {
2284
+ /**
2285
+ * **DO NOT USE!**
2286
+ *
2287
+ * This field exists to force TypeScript to recognize this as a nominal type
2288
+ * @hidden
2289
+ * @deprecated
2290
+ */
2291
+ readonly _nominal_Annotation: unique symbol;
2292
+ }
2293
+
2294
+ interface WorkspaceAnnotation extends Annotation {
2295
+ /**
2296
+ * **DO NOT USE!**
2297
+ *
2298
+ * This field exists to force TypeScript to recognize this as a nominal type
2299
+ * @hidden
2300
+ * @deprecated
2301
+ */
2302
+ readonly _nominal_WorkspaceAnnotation: unique symbol;
2303
+ }
2304
+
2279
2305
  interface AnnotationsService extends Instance {
2280
2306
  /**
2281
2307
  * **DO NOT USE!**
@@ -2983,6 +3009,24 @@ interface AudioFader extends Instance {
2983
3009
  GetConnectedWires(this: AudioFader, pin: string): unknown;
2984
3010
  }
2985
3011
 
3012
+ interface AudioFilter extends Instance {
3013
+ /**
3014
+ * **DO NOT USE!**
3015
+ *
3016
+ * This field exists to force TypeScript to recognize this as a nominal type
3017
+ * @hidden
3018
+ * @deprecated
3019
+ */
3020
+ readonly _nominal_AudioFilter: unique symbol;
3021
+ Bypass: boolean;
3022
+ FilterType: Enum.AudioFilterType;
3023
+ Frequency: number;
3024
+ Gain: number;
3025
+ Q: number;
3026
+ GetConnectedWires(this: AudioFilter, pin: string): unknown;
3027
+ GetGainAt(this: AudioFilter, frequency: number): number;
3028
+ }
3029
+
2986
3030
  interface AudioFlanger extends Instance {
2987
3031
  /**
2988
3032
  * **DO NOT USE!**
@@ -5076,6 +5120,20 @@ interface BaseWrap extends Instance {
5076
5120
  readonly ImportOriginWorld: CFrame;
5077
5121
  }
5078
5122
 
5123
+ interface WrapDeformer extends BaseWrap {
5124
+ /**
5125
+ * **DO NOT USE!**
5126
+ *
5127
+ * This field exists to force TypeScript to recognize this as a nominal type
5128
+ * @hidden
5129
+ * @deprecated
5130
+ */
5131
+ readonly _nominal_WrapDeformer: unique symbol;
5132
+ Amount: number;
5133
+ Enabled: boolean;
5134
+ RenderMeshID: string;
5135
+ }
5136
+
5079
5137
  /** The WrapLayer object defines a 3D accessory's inner and outer surfaces and other properties related to layering accessories. These surfaces, or the Inner Cage and Outer Cage, are similar to collision boxes, and describe the surfaces of which other 3D accessories can be placed without clipping or breaking.
5080
5138
  *
5081
5139
  * Internally, WrapLayer also uses the UV layout of the Inner and Outer cages to match coordinates to another 3D object's cage. This powers the deformation of objects around differently shaped avatars and underlying accessories.
@@ -15613,6 +15671,7 @@ interface Path2D extends GuiBase {
15613
15671
  * @deprecated
15614
15672
  */
15615
15673
  readonly _nominal_Path2D: unique symbol;
15674
+ Closed: boolean;
15616
15675
  Color3: Color3;
15617
15676
  Thickness: number;
15618
15677
  Visible: boolean;
@@ -15620,6 +15679,8 @@ interface Path2D extends GuiBase {
15620
15679
  GetBoundingRect(this: Path2D): Rect;
15621
15680
  GetControlPoint(this: Path2D, index: number): Path2DControlPoint;
15622
15681
  GetControlPoints(this: Path2D): unknown;
15682
+ GetLength(this: Path2D): number;
15683
+ GetMaxControlPoints(this: Path2D): number;
15623
15684
  GetPositionOnCurve(this: Path2D, t: number): UDim2;
15624
15685
  GetPositionOnCurveArcLength(this: Path2D, t: number): UDim2;
15625
15686
  GetTangentOnCurve(this: Path2D, t: number): Vector2;
@@ -15628,6 +15689,7 @@ interface Path2D extends GuiBase {
15628
15689
  RemoveControlPoint(this: Path2D, index: number): void;
15629
15690
  SetControlPoints(this: Path2D, controlPoints: Array<any>): void;
15630
15691
  UpdateControlPoint(this: Path2D, index: number, point: Path2DControlPoint): void;
15692
+ readonly ControlPointChanged: RBXScriptSignal<() => void>;
15631
15693
  }
15632
15694
 
15633
15695
  /** The GuiService is a service which currently allows developers to control what [GuiObject](https://developer.roblox.com/en-us/api-reference/class/GuiObject) is currently being selected by the gamepad navigator. It also allows clients to check if Roblox's main menu is currently open.
@@ -15677,6 +15739,10 @@ interface GuiService extends Instance {
15677
15739
  * Tags: NotReplicated
15678
15740
  */
15679
15741
  readonly MenuIsOpen: boolean;
15742
+ /**
15743
+ * Tags: NotReplicated
15744
+ */
15745
+ readonly PreferredTextSize: Enum.PreferredTextSize;
15680
15746
  /**
15681
15747
  * Tags: Hidden, NotReplicated
15682
15748
  */
@@ -29834,6 +29900,18 @@ interface ColorCorrectionEffect extends PostEffect {
29834
29900
  TintColor: Color3;
29835
29901
  }
29836
29902
 
29903
+ interface ColorGradingEffect extends PostEffect {
29904
+ /**
29905
+ * **DO NOT USE!**
29906
+ *
29907
+ * This field exists to force TypeScript to recognize this as a nominal type
29908
+ * @hidden
29909
+ * @deprecated
29910
+ */
29911
+ readonly _nominal_ColorGradingEffect: unique symbol;
29912
+ TonemapperPreset: Enum.TonemapperPreset;
29913
+ }
29914
+
29837
29915
  /** The **DepthOfFieldEffect** simulates a camera lens by blurring parts of a scene not in focus. Distant objects can be blurred or this effect can be used to focus on specific parts of a scene, like an item in an in-game shop.
29838
29916
  *
29839
29917
  * Like other post-processing effects, **DepthOfFieldEffect** will only work while [Enabled](https://developer.roblox.com/en-us/api-reference/property/PostEffect/Enabled) and when parented to [Lighting](https://developer.roblox.com/en-us/api-reference/class/Lighting) or [Workspace.CurrentCamera](https://developer.roblox.com/en-us/api-reference/property/Workspace/CurrentCamera). Also, it may render differently on low-end devices or depending on your Studio settings (see the **Quality Level** settings in **Rendering** → **Performance**).
@@ -272,6 +272,19 @@ interface BaseWrap extends Instance {
272
272
  ImportOrigin: CFrame;
273
273
  }
274
274
 
275
+ interface WrapDeformer extends BaseWrap {
276
+ /**
277
+ * **DO NOT USE!**
278
+ *
279
+ * This field exists to force TypeScript to recognize this as a nominal type
280
+ * @hidden
281
+ * @deprecated
282
+ */
283
+ readonly _nominal_WrapDeformer: unique symbol;
284
+ Amount: number;
285
+ RenderMeshID: string;
286
+ }
287
+
275
288
  interface WrapLayer extends BaseWrap {
276
289
  /**
277
290
  * **DO NOT USE!**
@@ -1917,6 +1917,99 @@ declare namespace Enum {
1917
1917
  }
1918
1918
  export type AudioApiRollout = AudioApiRollout.Disabled | AudioApiRollout.Automatic | AudioApiRollout.Enabled;
1919
1919
 
1920
+ export namespace AudioFilterType {
1921
+ export interface Peak extends globalThis.EnumItem {
1922
+ Name: "Peak";
1923
+ Value: 0;
1924
+ EnumType: typeof globalThis.Enum.AudioFilterType;
1925
+ }
1926
+
1927
+ export const Peak: Peak;
1928
+
1929
+ export interface LowShelf extends globalThis.EnumItem {
1930
+ Name: "LowShelf";
1931
+ Value: 1;
1932
+ EnumType: typeof globalThis.Enum.AudioFilterType;
1933
+ }
1934
+
1935
+ export const LowShelf: LowShelf;
1936
+
1937
+ export interface HighShelf extends globalThis.EnumItem {
1938
+ Name: "HighShelf";
1939
+ Value: 2;
1940
+ EnumType: typeof globalThis.Enum.AudioFilterType;
1941
+ }
1942
+
1943
+ export const HighShelf: HighShelf;
1944
+
1945
+ export interface Lowpass12dB extends globalThis.EnumItem {
1946
+ Name: "Lowpass12dB";
1947
+ Value: 3;
1948
+ EnumType: typeof globalThis.Enum.AudioFilterType;
1949
+ }
1950
+
1951
+ export const Lowpass12dB: Lowpass12dB;
1952
+
1953
+ export interface Lowpass24dB extends globalThis.EnumItem {
1954
+ Name: "Lowpass24dB";
1955
+ Value: 4;
1956
+ EnumType: typeof globalThis.Enum.AudioFilterType;
1957
+ }
1958
+
1959
+ export const Lowpass24dB: Lowpass24dB;
1960
+
1961
+ export interface Lowpass48dB extends globalThis.EnumItem {
1962
+ Name: "Lowpass48dB";
1963
+ Value: 5;
1964
+ EnumType: typeof globalThis.Enum.AudioFilterType;
1965
+ }
1966
+
1967
+ export const Lowpass48dB: Lowpass48dB;
1968
+
1969
+ export interface Highpass12dB extends globalThis.EnumItem {
1970
+ Name: "Highpass12dB";
1971
+ Value: 6;
1972
+ EnumType: typeof globalThis.Enum.AudioFilterType;
1973
+ }
1974
+
1975
+ export const Highpass12dB: Highpass12dB;
1976
+
1977
+ export interface Highpass24dB extends globalThis.EnumItem {
1978
+ Name: "Highpass24dB";
1979
+ Value: 7;
1980
+ EnumType: typeof globalThis.Enum.AudioFilterType;
1981
+ }
1982
+
1983
+ export const Highpass24dB: Highpass24dB;
1984
+
1985
+ export interface Highpass48dB extends globalThis.EnumItem {
1986
+ Name: "Highpass48dB";
1987
+ Value: 8;
1988
+ EnumType: typeof globalThis.Enum.AudioFilterType;
1989
+ }
1990
+
1991
+ export const Highpass48dB: Highpass48dB;
1992
+
1993
+ export interface Bandpass extends globalThis.EnumItem {
1994
+ Name: "Bandpass";
1995
+ Value: 9;
1996
+ EnumType: typeof globalThis.Enum.AudioFilterType;
1997
+ }
1998
+
1999
+ export const Bandpass: Bandpass;
2000
+
2001
+ export interface Notch extends globalThis.EnumItem {
2002
+ Name: "Notch";
2003
+ Value: 10;
2004
+ EnumType: typeof globalThis.Enum.AudioFilterType;
2005
+ }
2006
+
2007
+ export const Notch: Notch;
2008
+
2009
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AudioFilterType>;
2010
+ }
2011
+ 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;
2012
+
1920
2013
  export namespace AudioSubType {
1921
2014
  export interface Music extends globalThis.EnumItem {
1922
2015
  Name: "Music";
@@ -11647,9 +11740,65 @@ declare namespace Enum {
11647
11740
 
11648
11741
  export const Thumbstick2: Thumbstick2;
11649
11742
 
11743
+ export interface MouseLeftButton extends globalThis.EnumItem {
11744
+ Name: "MouseLeftButton";
11745
+ Value: 1018;
11746
+ EnumType: typeof globalThis.Enum.KeyCode;
11747
+ }
11748
+
11749
+ export const MouseLeftButton: MouseLeftButton;
11750
+
11751
+ export interface MouseRightButton extends globalThis.EnumItem {
11752
+ Name: "MouseRightButton";
11753
+ Value: 1019;
11754
+ EnumType: typeof globalThis.Enum.KeyCode;
11755
+ }
11756
+
11757
+ export const MouseRightButton: MouseRightButton;
11758
+
11759
+ export interface MouseMiddleButton extends globalThis.EnumItem {
11760
+ Name: "MouseMiddleButton";
11761
+ Value: 1020;
11762
+ EnumType: typeof globalThis.Enum.KeyCode;
11763
+ }
11764
+
11765
+ export const MouseMiddleButton: MouseMiddleButton;
11766
+
11767
+ export interface MouseBackButton extends globalThis.EnumItem {
11768
+ Name: "MouseBackButton";
11769
+ Value: 1021;
11770
+ EnumType: typeof globalThis.Enum.KeyCode;
11771
+ }
11772
+
11773
+ export const MouseBackButton: MouseBackButton;
11774
+
11775
+ export interface MouseNoButton extends globalThis.EnumItem {
11776
+ Name: "MouseNoButton";
11777
+ Value: 1022;
11778
+ EnumType: typeof globalThis.Enum.KeyCode;
11779
+ }
11780
+
11781
+ export const MouseNoButton: MouseNoButton;
11782
+
11783
+ export interface MouseX extends globalThis.EnumItem {
11784
+ Name: "MouseX";
11785
+ Value: 1023;
11786
+ EnumType: typeof globalThis.Enum.KeyCode;
11787
+ }
11788
+
11789
+ export const MouseX: MouseX;
11790
+
11791
+ export interface MouseY extends globalThis.EnumItem {
11792
+ Name: "MouseY";
11793
+ Value: 1024;
11794
+ EnumType: typeof globalThis.Enum.KeyCode;
11795
+ }
11796
+
11797
+ export const MouseY: MouseY;
11798
+
11650
11799
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.KeyCode>;
11651
11800
  }
11652
- export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.World0 | KeyCode.World1 | KeyCode.World2 | KeyCode.World3 | KeyCode.World4 | KeyCode.World5 | KeyCode.World6 | KeyCode.World7 | KeyCode.World8 | KeyCode.World9 | KeyCode.World10 | KeyCode.World11 | KeyCode.World12 | KeyCode.World13 | KeyCode.World14 | KeyCode.World15 | KeyCode.World16 | KeyCode.World17 | KeyCode.World18 | KeyCode.World19 | KeyCode.World20 | KeyCode.World21 | KeyCode.World22 | KeyCode.World23 | KeyCode.World24 | KeyCode.World25 | KeyCode.World26 | KeyCode.World27 | KeyCode.World28 | KeyCode.World29 | KeyCode.World30 | KeyCode.World31 | KeyCode.World32 | KeyCode.World33 | KeyCode.World34 | KeyCode.World35 | KeyCode.World36 | KeyCode.World37 | KeyCode.World38 | KeyCode.World39 | KeyCode.World40 | KeyCode.World41 | KeyCode.World42 | KeyCode.World43 | KeyCode.World44 | KeyCode.World45 | KeyCode.World46 | KeyCode.World47 | KeyCode.World48 | KeyCode.World49 | KeyCode.World50 | KeyCode.World51 | KeyCode.World52 | KeyCode.World53 | KeyCode.World54 | KeyCode.World55 | KeyCode.World56 | KeyCode.World57 | KeyCode.World58 | KeyCode.World59 | KeyCode.World60 | KeyCode.World61 | KeyCode.World62 | KeyCode.World63 | KeyCode.World64 | KeyCode.World65 | KeyCode.World66 | KeyCode.World67 | KeyCode.World68 | KeyCode.World69 | KeyCode.World70 | KeyCode.World71 | KeyCode.World72 | KeyCode.World73 | KeyCode.World74 | KeyCode.World75 | KeyCode.World76 | KeyCode.World77 | KeyCode.World78 | KeyCode.World79 | KeyCode.World80 | KeyCode.World81 | KeyCode.World82 | KeyCode.World83 | KeyCode.World84 | KeyCode.World85 | KeyCode.World86 | KeyCode.World87 | KeyCode.World88 | KeyCode.World89 | KeyCode.World90 | KeyCode.World91 | KeyCode.World92 | KeyCode.World93 | KeyCode.World94 | KeyCode.World95 | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2;
11801
+ export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.World0 | KeyCode.World1 | KeyCode.World2 | KeyCode.World3 | KeyCode.World4 | KeyCode.World5 | KeyCode.World6 | KeyCode.World7 | KeyCode.World8 | KeyCode.World9 | KeyCode.World10 | KeyCode.World11 | KeyCode.World12 | KeyCode.World13 | KeyCode.World14 | KeyCode.World15 | KeyCode.World16 | KeyCode.World17 | KeyCode.World18 | KeyCode.World19 | KeyCode.World20 | KeyCode.World21 | KeyCode.World22 | KeyCode.World23 | KeyCode.World24 | KeyCode.World25 | KeyCode.World26 | KeyCode.World27 | KeyCode.World28 | KeyCode.World29 | KeyCode.World30 | KeyCode.World31 | KeyCode.World32 | KeyCode.World33 | KeyCode.World34 | KeyCode.World35 | KeyCode.World36 | KeyCode.World37 | KeyCode.World38 | KeyCode.World39 | KeyCode.World40 | KeyCode.World41 | KeyCode.World42 | KeyCode.World43 | KeyCode.World44 | KeyCode.World45 | KeyCode.World46 | KeyCode.World47 | KeyCode.World48 | KeyCode.World49 | KeyCode.World50 | KeyCode.World51 | KeyCode.World52 | KeyCode.World53 | KeyCode.World54 | KeyCode.World55 | KeyCode.World56 | KeyCode.World57 | KeyCode.World58 | KeyCode.World59 | KeyCode.World60 | KeyCode.World61 | KeyCode.World62 | KeyCode.World63 | KeyCode.World64 | KeyCode.World65 | KeyCode.World66 | KeyCode.World67 | KeyCode.World68 | KeyCode.World69 | KeyCode.World70 | KeyCode.World71 | KeyCode.World72 | KeyCode.World73 | KeyCode.World74 | KeyCode.World75 | KeyCode.World76 | KeyCode.World77 | KeyCode.World78 | KeyCode.World79 | KeyCode.World80 | KeyCode.World81 | KeyCode.World82 | KeyCode.World83 | KeyCode.World84 | KeyCode.World85 | KeyCode.World86 | KeyCode.World87 | KeyCode.World88 | KeyCode.World89 | KeyCode.World90 | KeyCode.World91 | KeyCode.World92 | KeyCode.World93 | KeyCode.World94 | KeyCode.World95 | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2 | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MouseBackButton | KeyCode.MouseNoButton | KeyCode.MouseX | KeyCode.MouseY;
11653
11802
 
11654
11803
  export namespace KeyInterpolationMode {
11655
11804
  export interface Constant extends globalThis.EnumItem {
@@ -14474,7 +14623,7 @@ declare namespace Enum {
14474
14623
  export namespace PreferredTextSize {
14475
14624
  export interface Medium extends globalThis.EnumItem {
14476
14625
  Name: "Medium";
14477
- Value: 0;
14626
+ Value: 1;
14478
14627
  EnumType: typeof globalThis.Enum.PreferredTextSize;
14479
14628
  }
14480
14629
 
@@ -14482,7 +14631,7 @@ declare namespace Enum {
14482
14631
 
14483
14632
  export interface Large extends globalThis.EnumItem {
14484
14633
  Name: "Large";
14485
- Value: 4;
14634
+ Value: 2;
14486
14635
  EnumType: typeof globalThis.Enum.PreferredTextSize;
14487
14636
  }
14488
14637
 
@@ -14490,7 +14639,7 @@ declare namespace Enum {
14490
14639
 
14491
14640
  export interface Larger extends globalThis.EnumItem {
14492
14641
  Name: "Larger";
14493
- Value: 9;
14642
+ Value: 3;
14494
14643
  EnumType: typeof globalThis.Enum.PreferredTextSize;
14495
14644
  }
14496
14645
 
@@ -14498,7 +14647,7 @@ declare namespace Enum {
14498
14647
 
14499
14648
  export interface Largest extends globalThis.EnumItem {
14500
14649
  Name: "Largest";
14501
- Value: 14;
14650
+ Value: 4;
14502
14651
  EnumType: typeof globalThis.Enum.PreferredTextSize;
14503
14652
  }
14504
14653
 
@@ -19277,9 +19426,17 @@ declare namespace Enum {
19277
19426
 
19278
19427
  export const TeleportToVIPServer: TeleportToVIPServer;
19279
19428
 
19429
+ export interface TeleportToInstanceBack extends globalThis.EnumItem {
19430
+ Name: "TeleportToInstanceBack";
19431
+ Value: 5;
19432
+ EnumType: typeof globalThis.Enum.TeleportMethod;
19433
+ }
19434
+
19435
+ export const TeleportToInstanceBack: TeleportToInstanceBack;
19436
+
19280
19437
  export interface TeleportUnknown extends globalThis.EnumItem {
19281
19438
  Name: "TeleportUnknown";
19282
- Value: 5;
19439
+ Value: 6;
19283
19440
  EnumType: typeof globalThis.Enum.TeleportMethod;
19284
19441
  }
19285
19442
 
@@ -19287,7 +19444,7 @@ declare namespace Enum {
19287
19444
 
19288
19445
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TeleportMethod>;
19289
19446
  }
19290
- export type TeleportMethod = TeleportMethod.TeleportToSpawnByName | TeleportMethod.TeleportToPlaceInstance | TeleportMethod.TeleportToPrivateServer | TeleportMethod.TeleportPartyAsync | TeleportMethod.TeleportToVIPServer | TeleportMethod.TeleportUnknown;
19447
+ export type TeleportMethod = TeleportMethod.TeleportToSpawnByName | TeleportMethod.TeleportToPlaceInstance | TeleportMethod.TeleportToPrivateServer | TeleportMethod.TeleportPartyAsync | TeleportMethod.TeleportToVIPServer | TeleportMethod.TeleportToInstanceBack | TeleportMethod.TeleportUnknown;
19291
19448
 
19292
19449
  export namespace TeleportResult {
19293
19450
  export interface Success extends globalThis.EnumItem {
@@ -19436,9 +19593,17 @@ declare namespace Enum {
19436
19593
 
19437
19594
  export const ToVIPServer: ToVIPServer;
19438
19595
 
19596
+ export interface ToInstanceBack extends globalThis.EnumItem {
19597
+ Name: "ToInstanceBack";
19598
+ Value: 4;
19599
+ EnumType: typeof globalThis.Enum.TeleportType;
19600
+ }
19601
+
19602
+ export const ToInstanceBack: ToInstanceBack;
19603
+
19439
19604
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TeleportType>;
19440
19605
  }
19441
- export type TeleportType = TeleportType.ToPlace | TeleportType.ToInstance | TeleportType.ToReservedServer | TeleportType.ToVIPServer;
19606
+ export type TeleportType = TeleportType.ToPlace | TeleportType.ToInstance | TeleportType.ToReservedServer | TeleportType.ToVIPServer | TeleportType.ToInstanceBack;
19442
19607
 
19443
19608
  export namespace TerrainAcquisitionMethod {
19444
19609
  export interface None extends globalThis.EnumItem {
@@ -20162,6 +20327,27 @@ declare namespace Enum {
20162
20327
  }
20163
20328
  export type TickCountSampleMethod = TickCountSampleMethod.Fast | TickCountSampleMethod.Benchmark | TickCountSampleMethod.Precise;
20164
20329
 
20330
+ export namespace TonemapperPreset {
20331
+ export interface Default extends globalThis.EnumItem {
20332
+ Name: "Default";
20333
+ Value: 0;
20334
+ EnumType: typeof globalThis.Enum.TonemapperPreset;
20335
+ }
20336
+
20337
+ export const Default: Default;
20338
+
20339
+ export interface Retro extends globalThis.EnumItem {
20340
+ Name: "Retro";
20341
+ Value: 1;
20342
+ EnumType: typeof globalThis.Enum.TonemapperPreset;
20343
+ }
20344
+
20345
+ export const Retro: Retro;
20346
+
20347
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.TonemapperPreset>;
20348
+ }
20349
+ export type TonemapperPreset = TonemapperPreset.Default | TonemapperPreset.Retro;
20350
+
20165
20351
  export namespace TopBottom {
20166
20352
  export interface Top extends globalThis.EnumItem {
20167
20353
  Name: "Top";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.788",
3
+ "version": "1.0.790",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },