@rbxts/types 1.0.894 → 1.0.896

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.
@@ -1098,11 +1098,20 @@ declare namespace Enum {
1098
1098
  EnumType: typeof globalThis.Enum.AlphaMode;
1099
1099
  }
1100
1100
  export const TintMask: TintMask;
1101
+ /**
1102
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AlphaMode#Opaque)
1103
+ */
1104
+ export interface Opaque extends globalThis.EnumItem {
1105
+ Name: "Opaque";
1106
+ Value: 3;
1107
+ EnumType: typeof globalThis.Enum.AlphaMode;
1108
+ }
1109
+ export const Opaque: Opaque;
1101
1110
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AlphaMode>;
1102
1111
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AlphaMode | undefined;
1103
1112
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AlphaMode | undefined;
1104
1113
  }
1105
- export type AlphaMode = AlphaMode.Overlay | AlphaMode.Transparency | AlphaMode.TintMask;
1114
+ export type AlphaMode = AlphaMode.Overlay | AlphaMode.Transparency | AlphaMode.TintMask | AlphaMode.Opaque;
1106
1115
  /**
1107
1116
  * Used to form a dictionary of custom fields to provide breakdowns in Roblox-provided charts.
1108
1117
  *
@@ -1590,6 +1599,69 @@ declare namespace Enum {
1590
1599
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationClipFromVideoStatus | undefined;
1591
1600
  }
1592
1601
  export type AnimationClipFromVideoStatus = AnimationClipFromVideoStatus.Initializing | AnimationClipFromVideoStatus.Pending | AnimationClipFromVideoStatus.Processing | AnimationClipFromVideoStatus.ErrorGeneric | AnimationClipFromVideoStatus.Success | AnimationClipFromVideoStatus.ErrorVideoTooLong | AnimationClipFromVideoStatus.ErrorNoPersonDetected | AnimationClipFromVideoStatus.ErrorVideoUnstable | AnimationClipFromVideoStatus.Timeout | AnimationClipFromVideoStatus.Cancelled | AnimationClipFromVideoStatus.ErrorMultiplePeople | AnimationClipFromVideoStatus.ErrorUploadingVideo;
1602
+ /**
1603
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeBlend2DInputMode)
1604
+ */
1605
+ export namespace AnimationNodeBlend2DInputMode {
1606
+ /**
1607
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeBlend2DInputMode#Cartesian)
1608
+ */
1609
+ export interface Cartesian extends globalThis.EnumItem {
1610
+ Name: "Cartesian";
1611
+ Value: 0;
1612
+ EnumType: typeof globalThis.Enum.AnimationNodeBlend2DInputMode;
1613
+ }
1614
+ export const Cartesian: Cartesian;
1615
+ /**
1616
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeBlend2DInputMode#Polar)
1617
+ */
1618
+ export interface Polar extends globalThis.EnumItem {
1619
+ Name: "Polar";
1620
+ Value: 1;
1621
+ EnumType: typeof globalThis.Enum.AnimationNodeBlend2DInputMode;
1622
+ }
1623
+ export const Polar: Polar;
1624
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeBlend2DInputMode>;
1625
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeBlend2DInputMode | undefined;
1626
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeBlend2DInputMode | undefined;
1627
+ }
1628
+ export type AnimationNodeBlend2DInputMode = AnimationNodeBlend2DInputMode.Cartesian | AnimationNodeBlend2DInputMode.Polar;
1629
+ /**
1630
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible)
1631
+ */
1632
+ export namespace AnimationNodeInterruptible {
1633
+ /**
1634
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible#Always)
1635
+ */
1636
+ export interface Always extends globalThis.EnumItem {
1637
+ Name: "Always";
1638
+ Value: 0;
1639
+ EnumType: typeof globalThis.Enum.AnimationNodeInterruptible;
1640
+ }
1641
+ export const Always: Always;
1642
+ /**
1643
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible#ClipFinished)
1644
+ */
1645
+ export interface ClipFinished extends globalThis.EnumItem {
1646
+ Name: "ClipFinished";
1647
+ Value: 1;
1648
+ EnumType: typeof globalThis.Enum.AnimationNodeInterruptible;
1649
+ }
1650
+ export const ClipFinished: ClipFinished;
1651
+ /**
1652
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible#Expression)
1653
+ */
1654
+ export interface Expression extends globalThis.EnumItem {
1655
+ Name: "Expression";
1656
+ Value: 2;
1657
+ EnumType: typeof globalThis.Enum.AnimationNodeInterruptible;
1658
+ }
1659
+ export const Expression: Expression;
1660
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeInterruptible>;
1661
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeInterruptible | undefined;
1662
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeInterruptible | undefined;
1663
+ }
1664
+ export type AnimationNodeInterruptible = AnimationNodeInterruptible.Always | AnimationNodeInterruptible.ClipFinished | AnimationNodeInterruptible.Expression;
1593
1665
  /**
1594
1666
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePlayMode)
1595
1667
  */
@@ -1806,6 +1878,33 @@ declare namespace Enum {
1806
1878
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeType | undefined;
1807
1879
  }
1808
1880
  export type AnimationNodeType = AnimationNodeType.InvalidNode | AnimationNodeType.AddNode | AnimationNodeType.BlendNode | AnimationNodeType.Blend1DNode | AnimationNodeType.Blend2DNode | AnimationNodeType.ClipNode | AnimationNodeType.GraphOutput | AnimationNodeType.MaskNode | AnimationNodeType.PrioritySelectNode | AnimationNodeType.RandomSequenceNode | AnimationNodeType.SelectNode | AnimationNodeType.SequenceNode | AnimationNodeType.SpeedNode | AnimationNodeType.SubtractNode;
1881
+ /**
1882
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor)
1883
+ */
1884
+ export namespace AnimationNodeWaitFor {
1885
+ /**
1886
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor#ClipFinished)
1887
+ */
1888
+ export interface ClipFinished extends globalThis.EnumItem {
1889
+ Name: "ClipFinished";
1890
+ Value: 0;
1891
+ EnumType: typeof globalThis.Enum.AnimationNodeWaitFor;
1892
+ }
1893
+ export const ClipFinished: ClipFinished;
1894
+ /**
1895
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor#Expression)
1896
+ */
1897
+ export interface Expression extends globalThis.EnumItem {
1898
+ Name: "Expression";
1899
+ Value: 1;
1900
+ EnumType: typeof globalThis.Enum.AnimationNodeWaitFor;
1901
+ }
1902
+ export const Expression: Expression;
1903
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeWaitFor>;
1904
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeWaitFor | undefined;
1905
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeWaitFor | undefined;
1906
+ }
1907
+ export type AnimationNodeWaitFor = AnimationNodeWaitFor.ClipFinished | AnimationNodeWaitFor.Expression;
1809
1908
  /**
1810
1909
  * The AnimationPriority Enum determines how concurrently-playing AnimationTracks contribute to the final animation.
1811
1910
  *
@@ -7818,6 +7917,105 @@ declare namespace Enum {
7818
7917
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompletionTriggerKind | undefined;
7819
7918
  }
7820
7919
  export type CompletionTriggerKind = CompletionTriggerKind.Invoked | CompletionTriggerKind.TriggerCharacter | CompletionTriggerKind.TriggerForIncompleteCompletions;
7920
+ /**
7921
+ * Describes the type of value animated by a `CompositeValueCurve`.
7922
+ *
7923
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType)
7924
+ */
7925
+ export namespace CompositeValueCurveType {
7926
+ /**
7927
+ * The `CompositeValueCurve` will animate children of type `FloatCurve` named `"R"`, `"G"`, and `"B"` to animate the corresponding components of the `Color3` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
7928
+ *
7929
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#ColorRGB)
7930
+ */
7931
+ export interface ColorRGB extends globalThis.EnumItem {
7932
+ Name: "ColorRGB";
7933
+ Value: 0;
7934
+ EnumType: typeof globalThis.Enum.CompositeValueCurveType;
7935
+ }
7936
+ export const ColorRGB: ColorRGB;
7937
+ /**
7938
+ * The `CompositeValueCurve` will animate children of type `FloatCurve` named `"H"`, `"S"`, and `"V"` to animate hue, saturation, and value of a color that will be converted to RGB before returning a `Color3` value from the method `CompositeValueCurve:GetValueAtTime()`.
7939
+ *
7940
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#ColorHSV)
7941
+ */
7942
+ export interface ColorHSV extends globalThis.EnumItem {
7943
+ Name: "ColorHSV";
7944
+ Value: 1;
7945
+ EnumType: typeof globalThis.Enum.CompositeValueCurveType;
7946
+ }
7947
+ export const ColorHSV: ColorHSV;
7948
+ /**
7949
+ * The `CompositeValueCurve` will animate children of type `FloatCurve` named `"Min"` and `"Max"` to animate the corresponding components of the `NumberRange` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
7950
+ *
7951
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#NumberRange)
7952
+ */
7953
+ export interface NumberRange extends globalThis.EnumItem {
7954
+ Name: "NumberRange";
7955
+ Value: 2;
7956
+ EnumType: typeof globalThis.Enum.CompositeValueCurveType;
7957
+ }
7958
+ export const NumberRange: NumberRange;
7959
+ /**
7960
+ * The `CompositeValueCurve` will animate children of type `FloatCurve` named `"MinX"`, `"MaxX"`, `"MinY"`, and `"MaxY"` to animate the corresponding components of the `Rect` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
7961
+ *
7962
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#Rect)
7963
+ */
7964
+ export interface Rect extends globalThis.EnumItem {
7965
+ Name: "Rect";
7966
+ Value: 3;
7967
+ EnumType: typeof globalThis.Enum.CompositeValueCurveType;
7968
+ }
7969
+ export const Rect: Rect;
7970
+ /**
7971
+ * The `CompositeValueCurve` will animate children of type `FloatCurve` named `"Scale"` and `"Offset"` to animate the corresponding components of the `UDim` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
7972
+ *
7973
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#UDim)
7974
+ */
7975
+ export interface UDim extends globalThis.EnumItem {
7976
+ Name: "UDim";
7977
+ Value: 4;
7978
+ EnumType: typeof globalThis.Enum.CompositeValueCurveType;
7979
+ }
7980
+ export const UDim: UDim;
7981
+ /**
7982
+ * The `CompositeValueCurve` will animate children of type `FloatCurve` named `"ScaleX"`, `"OffsetX"`, `"ScaleY"`, and `"OffsetY"` to animate the corresponding components of the `UDim2` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
7983
+ *
7984
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#UDim2)
7985
+ */
7986
+ export interface UDim2 extends globalThis.EnumItem {
7987
+ Name: "UDim2";
7988
+ Value: 5;
7989
+ EnumType: typeof globalThis.Enum.CompositeValueCurveType;
7990
+ }
7991
+ export const UDim2: UDim2;
7992
+ /**
7993
+ * The `CompositeValueCurve` will animate children of type `FloatCurve` named `"X"` and `"Y"` to animate the corresponding components of the `Vector2` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
7994
+ *
7995
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#Vector2)
7996
+ */
7997
+ export interface Vector2 extends globalThis.EnumItem {
7998
+ Name: "Vector2";
7999
+ Value: 6;
8000
+ EnumType: typeof globalThis.Enum.CompositeValueCurveType;
8001
+ }
8002
+ export const Vector2: Vector2;
8003
+ /**
8004
+ * The `CompositeValueCurve` will animate children of type `FloatCurve` named `"X"`, `"Y"`, and `"Z"` to animate the corresponding components of the `Vector3` value returned by the method `CompositeValueCurve:GetValueAtTime()`.
8005
+ *
8006
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#Vector3)
8007
+ */
8008
+ export interface Vector3 extends globalThis.EnumItem {
8009
+ Name: "Vector3";
8010
+ Value: 7;
8011
+ EnumType: typeof globalThis.Enum.CompositeValueCurveType;
8012
+ }
8013
+ export const Vector3: Vector3;
8014
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CompositeValueCurveType>;
8015
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CompositeValueCurveType | undefined;
8016
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompositeValueCurveType | undefined;
8017
+ }
8018
+ export type CompositeValueCurveType = CompositeValueCurveType.ColorRGB | CompositeValueCurveType.ColorHSV | CompositeValueCurveType.NumberRange | CompositeValueCurveType.Rect | CompositeValueCurveType.UDim | CompositeValueCurveType.UDim2 | CompositeValueCurveType.Vector2 | CompositeValueCurveType.Vector3;
7821
8019
  /**
7822
8020
  * A compression algorithm to use in `EncodingService` methods.
7823
8021
  *
@@ -12629,6 +12827,33 @@ declare namespace Enum {
12629
12827
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FilterResult | undefined;
12630
12828
  }
12631
12829
  export type FilterResult = FilterResult.Accepted | FilterResult.Rejected;
12830
+ /**
12831
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FilterType)
12832
+ */
12833
+ export namespace FilterType {
12834
+ /**
12835
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FilterType#Exclude)
12836
+ */
12837
+ export interface Exclude extends globalThis.EnumItem {
12838
+ Name: "Exclude";
12839
+ Value: 0;
12840
+ EnumType: typeof globalThis.Enum.FilterType;
12841
+ }
12842
+ export const Exclude: Exclude;
12843
+ /**
12844
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FilterType#Include)
12845
+ */
12846
+ export interface Include extends globalThis.EnumItem {
12847
+ Name: "Include";
12848
+ Value: 1;
12849
+ EnumType: typeof globalThis.Enum.FilterType;
12850
+ }
12851
+ export const Include: Include;
12852
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FilterType>;
12853
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FilterType | undefined;
12854
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FilterType | undefined;
12855
+ }
12856
+ export type FilterType = FilterType.Exclude | FilterType.Include;
12632
12857
  /**
12633
12858
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FinishRecordingOperation)
12634
12859
  */
@@ -18557,6 +18782,15 @@ declare namespace Enum {
18557
18782
  EnumType: typeof globalThis.Enum.KeyCode;
18558
18783
  }
18559
18784
  export const MousePosition: MousePosition;
18785
+ /**
18786
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Touch)
18787
+ */
18788
+ export interface Touch extends globalThis.EnumItem {
18789
+ Name: "Touch";
18790
+ Value: 1034;
18791
+ EnumType: typeof globalThis.Enum.KeyCode;
18792
+ }
18793
+ export const Touch: Touch;
18560
18794
  /**
18561
18795
  * **Deprecated:**
18562
18796
  *
@@ -19661,7 +19895,7 @@ declare namespace Enum {
19661
19895
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.KeyCode | undefined;
19662
19896
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.KeyCode | undefined;
19663
19897
  }
19664
- export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2 | KeyCode.Thumbstick1Up | KeyCode.Thumbstick1Down | KeyCode.Thumbstick1Left | KeyCode.Thumbstick1Right | KeyCode.Thumbstick2Up | KeyCode.Thumbstick2Down | KeyCode.Thumbstick2Left | KeyCode.Thumbstick2Right | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MousePosition | KeyCode.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;
19898
+ export type KeyCode = KeyCode.Unknown | KeyCode.Backspace | KeyCode.Tab | KeyCode.Clear | KeyCode.Return | KeyCode.Pause | KeyCode.Escape | KeyCode.Space | KeyCode.QuotedDouble | KeyCode.Hash | KeyCode.Dollar | KeyCode.Percent | KeyCode.Ampersand | KeyCode.Quote | KeyCode.LeftParenthesis | KeyCode.RightParenthesis | KeyCode.Asterisk | KeyCode.Plus | KeyCode.Comma | KeyCode.Minus | KeyCode.Period | KeyCode.Slash | KeyCode.Zero | KeyCode.One | KeyCode.Two | KeyCode.Three | KeyCode.Four | KeyCode.Five | KeyCode.Six | KeyCode.Seven | KeyCode.Eight | KeyCode.Nine | KeyCode.Colon | KeyCode.Semicolon | KeyCode.LessThan | KeyCode.Equals | KeyCode.GreaterThan | KeyCode.Question | KeyCode.At | KeyCode.LeftBracket | KeyCode.BackSlash | KeyCode.RightBracket | KeyCode.Caret | KeyCode.Underscore | KeyCode.Backquote | KeyCode.A | KeyCode.B | KeyCode.C | KeyCode.D | KeyCode.E | KeyCode.F | KeyCode.G | KeyCode.H | KeyCode.I | KeyCode.J | KeyCode.K | KeyCode.L | KeyCode.M | KeyCode.N | KeyCode.O | KeyCode.P | KeyCode.Q | KeyCode.R | KeyCode.S | KeyCode.T | KeyCode.U | KeyCode.V | KeyCode.W | KeyCode.X | KeyCode.Y | KeyCode.Z | KeyCode.LeftCurly | KeyCode.Pipe | KeyCode.RightCurly | KeyCode.Tilde | KeyCode.Delete | KeyCode.KeypadZero | KeyCode.KeypadOne | KeyCode.KeypadTwo | KeyCode.KeypadThree | KeyCode.KeypadFour | KeyCode.KeypadFive | KeyCode.KeypadSix | KeyCode.KeypadSeven | KeyCode.KeypadEight | KeyCode.KeypadNine | KeyCode.KeypadPeriod | KeyCode.KeypadDivide | KeyCode.KeypadMultiply | KeyCode.KeypadMinus | KeyCode.KeypadPlus | KeyCode.KeypadEnter | KeyCode.KeypadEquals | KeyCode.Up | KeyCode.Down | KeyCode.Right | KeyCode.Left | KeyCode.Insert | KeyCode.Home | KeyCode.End | KeyCode.PageUp | KeyCode.PageDown | KeyCode.F1 | KeyCode.F2 | KeyCode.F3 | KeyCode.F4 | KeyCode.F5 | KeyCode.F6 | KeyCode.F7 | KeyCode.F8 | KeyCode.F9 | KeyCode.F10 | KeyCode.F11 | KeyCode.F12 | KeyCode.F13 | KeyCode.F14 | KeyCode.F15 | KeyCode.NumLock | KeyCode.CapsLock | KeyCode.ScrollLock | KeyCode.RightShift | KeyCode.LeftShift | KeyCode.RightControl | KeyCode.LeftControl | KeyCode.RightAlt | KeyCode.LeftAlt | KeyCode.RightMeta | KeyCode.LeftMeta | KeyCode.LeftSuper | KeyCode.RightSuper | KeyCode.Mode | KeyCode.Compose | KeyCode.Help | KeyCode.Print | KeyCode.SysReq | KeyCode.Break | KeyCode.Menu | KeyCode.Power | KeyCode.Euro | KeyCode.Undo | KeyCode.ButtonX | KeyCode.ButtonY | KeyCode.ButtonA | KeyCode.ButtonB | KeyCode.ButtonR1 | KeyCode.ButtonL1 | KeyCode.ButtonR2 | KeyCode.ButtonL2 | KeyCode.ButtonR3 | KeyCode.ButtonL3 | KeyCode.ButtonStart | KeyCode.ButtonSelect | KeyCode.DPadLeft | KeyCode.DPadRight | KeyCode.DPadUp | KeyCode.DPadDown | KeyCode.Thumbstick1 | KeyCode.Thumbstick2 | KeyCode.Thumbstick1Up | KeyCode.Thumbstick1Down | KeyCode.Thumbstick1Left | KeyCode.Thumbstick1Right | KeyCode.Thumbstick2Up | KeyCode.Thumbstick2Down | KeyCode.Thumbstick2Left | KeyCode.Thumbstick2Right | KeyCode.MouseLeftButton | KeyCode.MouseRightButton | KeyCode.MouseMiddleButton | KeyCode.MousePosition | KeyCode.Touch | 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;
19665
19899
  /**
19666
19900
  * Describes the interpolation method between two keys.
19667
19901
  *
@@ -20541,6 +20775,42 @@ declare namespace Enum {
20541
20775
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LuauTypeCheckMode | undefined;
20542
20776
  }
20543
20777
  export type LuauTypeCheckMode = LuauTypeCheckMode.Default | LuauTypeCheckMode.NoCheck | LuauTypeCheckMode.Nonstrict | LuauTypeCheckMode.Strict;
20778
+ /**
20779
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MakeupType)
20780
+ */
20781
+ export namespace MakeupType {
20782
+ /**
20783
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MakeupType#Face)
20784
+ */
20785
+ export interface Face extends globalThis.EnumItem {
20786
+ Name: "Face";
20787
+ Value: 0;
20788
+ EnumType: typeof globalThis.Enum.MakeupType;
20789
+ }
20790
+ export const Face: Face;
20791
+ /**
20792
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MakeupType#Lip)
20793
+ */
20794
+ export interface Lip extends globalThis.EnumItem {
20795
+ Name: "Lip";
20796
+ Value: 1;
20797
+ EnumType: typeof globalThis.Enum.MakeupType;
20798
+ }
20799
+ export const Lip: Lip;
20800
+ /**
20801
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MakeupType#Eye)
20802
+ */
20803
+ export interface Eye extends globalThis.EnumItem {
20804
+ Name: "Eye";
20805
+ Value: 2;
20806
+ EnumType: typeof globalThis.Enum.MakeupType;
20807
+ }
20808
+ export const Eye: Eye;
20809
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MakeupType>;
20810
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MakeupType | undefined;
20811
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MakeupType | undefined;
20812
+ }
20813
+ export type MakeupType = MakeupType.Face | MakeupType.Lip | MakeupType.Eye;
20544
20814
  /**
20545
20815
  * The status of the BulkPurchasePrompt after player interaction.
20546
20816
  *
@@ -26504,6 +26774,33 @@ declare namespace Enum {
26504
26774
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RestPose | undefined;
26505
26775
  }
26506
26776
  export type RestPose = RestPose.Default | RestPose.RotationsReset | RestPose.Custom;
26777
+ /**
26778
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPoseModel)
26779
+ */
26780
+ export namespace RestPoseModel {
26781
+ /**
26782
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPoseModel#FromRigInACE)
26783
+ */
26784
+ export interface FromRigInACE extends globalThis.EnumItem {
26785
+ Name: "FromRigInACE";
26786
+ Value: 0;
26787
+ EnumType: typeof globalThis.Enum.RestPoseModel;
26788
+ }
26789
+ export const FromRigInACE: FromRigInACE;
26790
+ /**
26791
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RestPoseModel#FromRigInFile)
26792
+ */
26793
+ export interface FromRigInFile extends globalThis.EnumItem {
26794
+ Name: "FromRigInFile";
26795
+ Value: 1;
26796
+ EnumType: typeof globalThis.Enum.RestPoseModel;
26797
+ }
26798
+ export const FromRigInFile: FromRigInFile;
26799
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RestPoseModel>;
26800
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RestPoseModel | undefined;
26801
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RestPoseModel | undefined;
26802
+ }
26803
+ export type RestPoseModel = RestPoseModel.FromRigInACE | RestPoseModel.FromRigInFile;
26507
26804
  /**
26508
26805
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ReturnKeyType)
26509
26806
  */
@@ -26988,6 +27285,222 @@ declare namespace Enum {
26988
27285
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RibbonTool | undefined;
26989
27286
  }
26990
27287
  export type RibbonTool = RibbonTool.Select | RibbonTool.Scale | RibbonTool.Rotate | RibbonTool.Move | RibbonTool.Transform | RibbonTool.ColorPicker | RibbonTool.MaterialPicker | RibbonTool.Group | RibbonTool.Ungroup | RibbonTool.None | RibbonTool.PivotEditor;
27288
+ /**
27289
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel)
27290
+ */
27291
+ export namespace RigLabel {
27292
+ /**
27293
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Invalid)
27294
+ */
27295
+ export interface Invalid extends globalThis.EnumItem {
27296
+ Name: "Invalid";
27297
+ Value: 0;
27298
+ EnumType: typeof globalThis.Enum.RigLabel;
27299
+ }
27300
+ export const Invalid: Invalid;
27301
+ /**
27302
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Root)
27303
+ */
27304
+ export interface Root extends globalThis.EnumItem {
27305
+ Name: "Root";
27306
+ Value: 1;
27307
+ EnumType: typeof globalThis.Enum.RigLabel;
27308
+ }
27309
+ export const Root: Root;
27310
+ /**
27311
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Pelvis)
27312
+ */
27313
+ export interface Pelvis extends globalThis.EnumItem {
27314
+ Name: "Pelvis";
27315
+ Value: 2;
27316
+ EnumType: typeof globalThis.Enum.RigLabel;
27317
+ }
27318
+ export const Pelvis: Pelvis;
27319
+ /**
27320
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Waist)
27321
+ */
27322
+ export interface Waist extends globalThis.EnumItem {
27323
+ Name: "Waist";
27324
+ Value: 3;
27325
+ EnumType: typeof globalThis.Enum.RigLabel;
27326
+ }
27327
+ export const Waist: Waist;
27328
+ /**
27329
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Chest)
27330
+ */
27331
+ export interface Chest extends globalThis.EnumItem {
27332
+ Name: "Chest";
27333
+ Value: 4;
27334
+ EnumType: typeof globalThis.Enum.RigLabel;
27335
+ }
27336
+ export const Chest: Chest;
27337
+ /**
27338
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Neck)
27339
+ */
27340
+ export interface Neck extends globalThis.EnumItem {
27341
+ Name: "Neck";
27342
+ Value: 5;
27343
+ EnumType: typeof globalThis.Enum.RigLabel;
27344
+ }
27345
+ export const Neck: Neck;
27346
+ /**
27347
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#HeadBase)
27348
+ */
27349
+ export interface HeadBase extends globalThis.EnumItem {
27350
+ Name: "HeadBase";
27351
+ Value: 6;
27352
+ EnumType: typeof globalThis.Enum.RigLabel;
27353
+ }
27354
+ export const HeadBase: HeadBase;
27355
+ /**
27356
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftClavicle)
27357
+ */
27358
+ export interface LeftClavicle extends globalThis.EnumItem {
27359
+ Name: "LeftClavicle";
27360
+ Value: 7;
27361
+ EnumType: typeof globalThis.Enum.RigLabel;
27362
+ }
27363
+ export const LeftClavicle: LeftClavicle;
27364
+ /**
27365
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftShoulder)
27366
+ */
27367
+ export interface LeftShoulder extends globalThis.EnumItem {
27368
+ Name: "LeftShoulder";
27369
+ Value: 8;
27370
+ EnumType: typeof globalThis.Enum.RigLabel;
27371
+ }
27372
+ export const LeftShoulder: LeftShoulder;
27373
+ /**
27374
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftElbow)
27375
+ */
27376
+ export interface LeftElbow extends globalThis.EnumItem {
27377
+ Name: "LeftElbow";
27378
+ Value: 9;
27379
+ EnumType: typeof globalThis.Enum.RigLabel;
27380
+ }
27381
+ export const LeftElbow: LeftElbow;
27382
+ /**
27383
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftWrist)
27384
+ */
27385
+ export interface LeftWrist extends globalThis.EnumItem {
27386
+ Name: "LeftWrist";
27387
+ Value: 10;
27388
+ EnumType: typeof globalThis.Enum.RigLabel;
27389
+ }
27390
+ export const LeftWrist: LeftWrist;
27391
+ /**
27392
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightClavicle)
27393
+ */
27394
+ export interface RightClavicle extends globalThis.EnumItem {
27395
+ Name: "RightClavicle";
27396
+ Value: 11;
27397
+ EnumType: typeof globalThis.Enum.RigLabel;
27398
+ }
27399
+ export const RightClavicle: RightClavicle;
27400
+ /**
27401
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightShoulder)
27402
+ */
27403
+ export interface RightShoulder extends globalThis.EnumItem {
27404
+ Name: "RightShoulder";
27405
+ Value: 12;
27406
+ EnumType: typeof globalThis.Enum.RigLabel;
27407
+ }
27408
+ export const RightShoulder: RightShoulder;
27409
+ /**
27410
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightElbow)
27411
+ */
27412
+ export interface RightElbow extends globalThis.EnumItem {
27413
+ Name: "RightElbow";
27414
+ Value: 13;
27415
+ EnumType: typeof globalThis.Enum.RigLabel;
27416
+ }
27417
+ export const RightElbow: RightElbow;
27418
+ /**
27419
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightWrist)
27420
+ */
27421
+ export interface RightWrist extends globalThis.EnumItem {
27422
+ Name: "RightWrist";
27423
+ Value: 14;
27424
+ EnumType: typeof globalThis.Enum.RigLabel;
27425
+ }
27426
+ export const RightWrist: RightWrist;
27427
+ /**
27428
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftHip)
27429
+ */
27430
+ export interface LeftHip extends globalThis.EnumItem {
27431
+ Name: "LeftHip";
27432
+ Value: 15;
27433
+ EnumType: typeof globalThis.Enum.RigLabel;
27434
+ }
27435
+ export const LeftHip: LeftHip;
27436
+ /**
27437
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftKnee)
27438
+ */
27439
+ export interface LeftKnee extends globalThis.EnumItem {
27440
+ Name: "LeftKnee";
27441
+ Value: 16;
27442
+ EnumType: typeof globalThis.Enum.RigLabel;
27443
+ }
27444
+ export const LeftKnee: LeftKnee;
27445
+ /**
27446
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftAnkle)
27447
+ */
27448
+ export interface LeftAnkle extends globalThis.EnumItem {
27449
+ Name: "LeftAnkle";
27450
+ Value: 17;
27451
+ EnumType: typeof globalThis.Enum.RigLabel;
27452
+ }
27453
+ export const LeftAnkle: LeftAnkle;
27454
+ /**
27455
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftToes)
27456
+ */
27457
+ export interface LeftToes extends globalThis.EnumItem {
27458
+ Name: "LeftToes";
27459
+ Value: 18;
27460
+ EnumType: typeof globalThis.Enum.RigLabel;
27461
+ }
27462
+ export const LeftToes: LeftToes;
27463
+ /**
27464
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightHip)
27465
+ */
27466
+ export interface RightHip extends globalThis.EnumItem {
27467
+ Name: "RightHip";
27468
+ Value: 19;
27469
+ EnumType: typeof globalThis.Enum.RigLabel;
27470
+ }
27471
+ export const RightHip: RightHip;
27472
+ /**
27473
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightKnee)
27474
+ */
27475
+ export interface RightKnee extends globalThis.EnumItem {
27476
+ Name: "RightKnee";
27477
+ Value: 20;
27478
+ EnumType: typeof globalThis.Enum.RigLabel;
27479
+ }
27480
+ export const RightKnee: RightKnee;
27481
+ /**
27482
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightAnkle)
27483
+ */
27484
+ export interface RightAnkle extends globalThis.EnumItem {
27485
+ Name: "RightAnkle";
27486
+ Value: 21;
27487
+ EnumType: typeof globalThis.Enum.RigLabel;
27488
+ }
27489
+ export const RightAnkle: RightAnkle;
27490
+ /**
27491
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightToes)
27492
+ */
27493
+ export interface RightToes extends globalThis.EnumItem {
27494
+ Name: "RightToes";
27495
+ Value: 22;
27496
+ EnumType: typeof globalThis.Enum.RigLabel;
27497
+ }
27498
+ export const RightToes: RightToes;
27499
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RigLabel>;
27500
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RigLabel | undefined;
27501
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RigLabel | undefined;
27502
+ }
27503
+ export type RigLabel = RigLabel.Invalid | RigLabel.Root | RigLabel.Pelvis | RigLabel.Waist | RigLabel.Chest | RigLabel.Neck | RigLabel.HeadBase | RigLabel.LeftClavicle | RigLabel.LeftShoulder | RigLabel.LeftElbow | RigLabel.LeftWrist | RigLabel.RightClavicle | RigLabel.RightShoulder | RigLabel.RightElbow | RigLabel.RightWrist | RigLabel.LeftHip | RigLabel.LeftKnee | RigLabel.LeftAnkle | RigLabel.LeftToes | RigLabel.RightHip | RigLabel.RightKnee | RigLabel.RightAnkle | RigLabel.RightToes;
26991
27504
  /**
26992
27505
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigScale)
26993
27506
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.894",
3
+ "version": "1.0.896",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },