0.449.1.411731

This commit is contained in:
CloneTrooper1019 2020-09-24 19:38:30 -05:00
parent d1535c9a15
commit 44f0f94bb7
6 changed files with 205 additions and 141 deletions

View File

@ -1,5 +1,5 @@
// Auto-generated list of creatable Roblox classes. // Auto-generated list of creatable Roblox classes.
// Updated as of 0.448.0.411244 // Updated as of 0.449.1.411731
using System; using System;
@ -225,15 +225,15 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public Vector3 angularvelocity public Vector3 angularvelocity
{ {
get { return AngularVelocity; } get => AngularVelocity;
set { AngularVelocity = value; } set => AngularVelocity = value;
} }
[Obsolete] [Obsolete]
public Vector3 maxTorque public Vector3 maxTorque
{ {
get { return MaxTorque; } get => MaxTorque;
set { MaxTorque = value; } set => MaxTorque = value;
} }
} }
@ -244,8 +244,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public Vector3 force public Vector3 force
{ {
get { return Force; } get => Force;
set { Force = value; } set => Force = value;
} }
} }
@ -259,15 +259,15 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public CFrame cframe public CFrame cframe
{ {
get { return CFrame; } get => CFrame;
set { CFrame = value; } set => CFrame = value;
} }
[Obsolete] [Obsolete]
public Vector3 maxTorque public Vector3 maxTorque
{ {
get { return MaxTorque; } get => MaxTorque;
set { MaxTorque = value; } set => MaxTorque = value;
} }
} }
@ -281,15 +281,15 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public Vector3 maxForce public Vector3 maxForce
{ {
get { return MaxForce; } get => MaxForce;
set { MaxForce = value; } set => MaxForce = value;
} }
[Obsolete] [Obsolete]
public Vector3 position public Vector3 position
{ {
get { return Position; } get => Position;
set { Position = value; } set => Position = value;
} }
} }
@ -301,15 +301,15 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public Vector3 force public Vector3 force
{ {
get { return Force; } get => Force;
set { Force = value; } set => Force = value;
} }
[Obsolete] [Obsolete]
public Vector3 location public Vector3 location
{ {
get { return Location; } get => Location;
set { Location = value; } set => Location = value;
} }
} }
@ -322,15 +322,15 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public Vector3 maxForce public Vector3 maxForce
{ {
get { return MaxForce; } get => MaxForce;
set { MaxForce = value; } set => MaxForce = value;
} }
[Obsolete] [Obsolete]
public Vector3 velocity public Vector3 velocity
{ {
get { return Velocity; } get => Velocity;
set { Velocity = value; } set => Velocity = value;
} }
} }
@ -398,8 +398,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public CFrame CoordinateFrame public CFrame CoordinateFrame
{ {
get { return CFrame; } get => CFrame;
set { CFrame = value; } set => CFrame = value;
} }
public float FieldOfView = 70; public float FieldOfView = 70;
@ -410,8 +410,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public CFrame focus public CFrame focus
{ {
get { return Focus; } get => Focus;
set { Focus = value; } set => Focus = value;
} }
} }
@ -431,48 +431,48 @@ namespace RobloxFiles
{ {
public BrickColor HeadColor public BrickColor HeadColor
{ {
get { return BrickColor.FromColor3(HeadColor3); } get => BrickColor.FromColor3(HeadColor3);
set { HeadColor3 = value?.Color; } set => HeadColor3 = value?.Color;
} }
public Color3 HeadColor3 = Color3.FromRGB(253, 234, 141); public Color3 HeadColor3 = Color3.FromRGB(253, 234, 141);
public BrickColor LeftArmColor public BrickColor LeftArmColor
{ {
get { return BrickColor.FromColor3(LeftArmColor3); } get => BrickColor.FromColor3(LeftArmColor3);
set { LeftArmColor3 = value?.Color; } set => LeftArmColor3 = value?.Color;
} }
public Color3 LeftArmColor3 = Color3.FromRGB(253, 234, 141); public Color3 LeftArmColor3 = Color3.FromRGB(253, 234, 141);
public BrickColor LeftLegColor public BrickColor LeftLegColor
{ {
get { return BrickColor.FromColor3(LeftLegColor3); } get => BrickColor.FromColor3(LeftLegColor3);
set { LeftLegColor3 = value?.Color; } set => LeftLegColor3 = value?.Color;
} }
public Color3 LeftLegColor3 = Color3.FromRGB(13, 105, 172); public Color3 LeftLegColor3 = Color3.FromRGB(13, 105, 172);
public BrickColor RightArmColor public BrickColor RightArmColor
{ {
get { return BrickColor.FromColor3(RightArmColor3); } get => BrickColor.FromColor3(RightArmColor3);
set { RightArmColor3 = value?.Color; } set => RightArmColor3 = value?.Color;
} }
public Color3 RightArmColor3 = Color3.FromRGB(253, 234, 141); public Color3 RightArmColor3 = Color3.FromRGB(253, 234, 141);
public BrickColor RightLegColor public BrickColor RightLegColor
{ {
get { return BrickColor.FromColor3(RightLegColor3); } get => BrickColor.FromColor3(RightLegColor3);
set { RightLegColor3 = value?.Color; } set => RightLegColor3 = value?.Color;
} }
public Color3 RightLegColor3 = Color3.FromRGB(13, 105, 172); public Color3 RightLegColor3 = Color3.FromRGB(13, 105, 172);
public BrickColor TorsoColor public BrickColor TorsoColor
{ {
get { return BrickColor.FromColor3(TorsoColor3); } get => BrickColor.FromColor3(TorsoColor3);
set { TorsoColor3 = value?.Color; } set => TorsoColor3 = value?.Color;
} }
public Color3 TorsoColor3 = Color3.FromRGB(40, 127, 71); public Color3 TorsoColor3 = Color3.FromRGB(40, 127, 71);
@ -932,16 +932,16 @@ namespace RobloxFiles
public float Heat public float Heat
{ {
get { return heat_xml; } get => heat_xml;
set { heat_xml = value; } set => heat_xml = value;
} }
public Color3 SecondaryColor = Color3.FromRGB(139, 80, 55); public Color3 SecondaryColor = Color3.FromRGB(139, 80, 55);
public float Size public float Size
{ {
get { return size_xml; } get => size_xml;
set { size_xml = value; } set => size_xml = value;
} }
public float heat_xml = 9; public float heat_xml = 9;
@ -949,8 +949,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public float size public float size
{ {
get { return Size; } get => Size;
set { Size = value; } set => Size = value;
} }
public float size_xml = 5; public float size_xml = 5;
@ -1046,8 +1046,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public bool Localize public bool Localize
{ {
get { return AutoLocalize; } get => AutoLocalize;
set { AutoLocalize = value; } set => AutoLocalize = value;
} }
public LocalizationTable RootLocalizationTable; public LocalizationTable RootLocalizationTable;
@ -1057,12 +1057,13 @@ namespace RobloxFiles
{ {
public bool Active; public bool Active;
public Vector2 AnchorPoint = new Vector2(); public Vector2 AnchorPoint = new Vector2();
public AutomaticSize AutomaticSize = AutomaticSize.None;
[Obsolete] [Obsolete]
public BrickColor BackgroundColor public BrickColor BackgroundColor
{ {
get { return BrickColor.FromColor3(BackgroundColor3); } get => BrickColor.FromColor3(BackgroundColor3);
set { BackgroundColor3 = value?.Color; } set => BackgroundColor3 = value?.Color;
} }
public Color3 BackgroundColor3 = Color3.FromRGB(163, 162, 165); public Color3 BackgroundColor3 = Color3.FromRGB(163, 162, 165);
@ -1071,8 +1072,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public BrickColor BorderColor public BrickColor BorderColor
{ {
get { return BrickColor.FromColor3(BorderColor3); } get => BrickColor.FromColor3(BorderColor3);
set { BorderColor3 = value?.Color; } set => BorderColor3 = value?.Color;
} }
public Color3 BorderColor3 = Color3.FromRGB(27, 42, 53); public Color3 BorderColor3 = Color3.FromRGB(27, 42, 53);
@ -1097,8 +1098,8 @@ namespace RobloxFiles
public float Transparency public float Transparency
{ {
get { return BackgroundTransparency; } get => BackgroundTransparency;
set { BackgroundTransparency = value; } set => BackgroundTransparency = value;
} }
public bool Visible = true; public bool Visible = true;
@ -1140,8 +1141,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public FontSize FontSize public FontSize FontSize
{ {
get { return FontUtility.GetFontSize(TextSize); } get => FontUtility.GetFontSize(TextSize);
set { TextSize = FontUtility.GetFontSize(value); } set => TextSize = FontUtility.GetFontSize(value);
} }
public float LineHeight = 1; public float LineHeight = 1;
@ -1151,8 +1152,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public BrickColor TextColor public BrickColor TextColor
{ {
get { return BrickColor.FromColor3(TextColor3); } get => BrickColor.FromColor3(TextColor3);
set { TextColor3 = value?.Color; } set => TextColor3 = value?.Color;
} }
public Color3 TextColor3 = Color3.FromRGB(27, 42, 53); public Color3 TextColor3 = Color3.FromRGB(27, 42, 53);
@ -1166,8 +1167,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public bool TextWrap public bool TextWrap
{ {
get { return TextWrapped; } get => TextWrapped;
set { TextWrapped = value; } set => TextWrapped = value;
} }
public bool TextWrapped; public bool TextWrapped;
@ -1176,7 +1177,7 @@ namespace RobloxFiles
public new float Transparency public new float Transparency
{ {
get { return base.Transparency; } get => base.Transparency;
set set
{ {
@ -1210,8 +1211,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public FontSize FontSize public FontSize FontSize
{ {
get { return FontUtility.GetFontSize(TextSize); } get => FontUtility.GetFontSize(TextSize);
set { TextSize = FontUtility.GetFontSize(value); } set => TextSize = FontUtility.GetFontSize(value);
} }
public float LineHeight = 1; public float LineHeight = 1;
@ -1221,8 +1222,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public BrickColor TextColor public BrickColor TextColor
{ {
get { return BrickColor.FromColor3(TextColor3); } get => BrickColor.FromColor3(TextColor3);
set { TextColor3 = value?.Color; } set => TextColor3 = value?.Color;
} }
public Color3 TextColor3 = Color3.FromRGB(27, 42, 53); public Color3 TextColor3 = Color3.FromRGB(27, 42, 53);
@ -1236,8 +1237,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public bool TextWrap public bool TextWrap
{ {
get { return TextWrapped; } get => TextWrapped;
set { TextWrapped = value; } set => TextWrapped = value;
} }
public bool TextWrapped; public bool TextWrapped;
@ -1246,7 +1247,7 @@ namespace RobloxFiles
public new float Transparency public new float Transparency
{ {
get { return base.Transparency; } get => base.Transparency;
set set
{ {
@ -1258,6 +1259,7 @@ namespace RobloxFiles
public class ScrollingFrame : GuiObject public class ScrollingFrame : GuiObject
{ {
public AutomaticSize AutomaticCanvasSize = AutomaticSize.None;
public Content BottomImage = "rbxasset://textures/ui/Scroll/scroll-bottom.png"; public Content BottomImage = "rbxasset://textures/ui/Scroll/scroll-bottom.png";
public Vector2 CanvasPosition = new Vector2(); public Vector2 CanvasPosition = new Vector2();
public UDim2 CanvasSize = new UDim2(0, 0, 2, 0); public UDim2 CanvasSize = new UDim2(0, 0, 2, 0);
@ -1282,8 +1284,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public FontSize FontSize public FontSize FontSize
{ {
get { return FontUtility.GetFontSize(TextSize); } get => FontUtility.GetFontSize(TextSize);
set { TextSize = FontUtility.GetFontSize(value); } set => TextSize = FontUtility.GetFontSize(value);
} }
public float LineHeight = 1; public float LineHeight = 1;
@ -1297,8 +1299,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public BrickColor TextColor public BrickColor TextColor
{ {
get { return BrickColor.FromColor3(TextColor3); } get => BrickColor.FromColor3(TextColor3);
set { TextColor3 = value?.Color; } set => TextColor3 = value?.Color;
} }
public Color3 TextColor3 = Color3.FromRGB(27, 42, 53); public Color3 TextColor3 = Color3.FromRGB(27, 42, 53);
@ -1313,8 +1315,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public bool TextWrap public bool TextWrap
{ {
get { return TextWrapped; } get => TextWrapped;
set { TextWrapped = value; } set => TextWrapped = value;
} }
public bool TextWrapped; public bool TextWrapped;
@ -1323,7 +1325,7 @@ namespace RobloxFiles
public new float Transparency public new float Transparency
{ {
get { return base.Transparency; } get => base.Transparency;
set set
{ {
@ -1410,8 +1412,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public BrickColor Color public BrickColor Color
{ {
get { return BrickColor.FromColor3(Color3); } get => BrickColor.FromColor3(Color3);
set { Color3 = value?.Color; } set => Color3 = value?.Color;
} }
public Color3 Color3 = Color3.FromRGB(13, 105, 172); public Color3 Color3 = Color3.FromRGB(13, 105, 172);
@ -1443,8 +1445,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public BrickColor SurfaceColor public BrickColor SurfaceColor
{ {
get { return BrickColor.FromColor3(SurfaceColor3); } get => BrickColor.FromColor3(SurfaceColor3);
set { SurfaceColor3 = value?.Color; } set => SurfaceColor3 = value?.Color;
} }
public Color3 SurfaceColor3 = Color3.FromRGB(13, 105, 172); public Color3 SurfaceColor3 = Color3.FromRGB(13, 105, 172);
@ -1509,8 +1511,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public BrickColor SurfaceColor public BrickColor SurfaceColor
{ {
get { return BrickColor.FromColor3(SurfaceColor3); } get => BrickColor.FromColor3(SurfaceColor3);
set { SurfaceColor3 = value?.Color; } set => SurfaceColor3 = value?.Color;
} }
public Color3 SurfaceColor3 = Color3.FromRGB(13, 105, 172); public Color3 SurfaceColor3 = Color3.FromRGB(13, 105, 172);
@ -1608,8 +1610,8 @@ namespace RobloxFiles
public float Health public float Health
{ {
get { return Health_XML; } get => Health_XML;
set { Health_XML = value; } set => Health_XML = value;
} }
public float HealthDisplayDistance = 100; public float HealthDisplayDistance = 100;
@ -1632,8 +1634,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public float maxHealth public float maxHealth
{ {
get { return MaxHealth; } get => MaxHealth;
set { MaxHealth = value; } set => MaxHealth = value;
} }
} }
@ -1906,8 +1908,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public string DevelopmentLanguage public string DevelopmentLanguage
{ {
get { return SourceLocaleId; } get => SourceLocaleId;
set { SourceLocaleId = value; } set => SourceLocaleId = value;
} }
public string SourceLocaleId = "en-us"; public string SourceLocaleId = "en-us";
@ -2039,8 +2041,8 @@ namespace RobloxFiles
public BrickColor BrickColor public BrickColor BrickColor
{ {
get { return BrickColor.FromColor3(Color); } get => BrickColor.FromColor3(Color);
set { Color = value?.Color; } set => Color = value?.Color;
} }
public CFrame CFrame = new CFrame(); public CFrame CFrame = new CFrame();
@ -2050,8 +2052,8 @@ namespace RobloxFiles
public Color3 Color public Color3 Color
{ {
get { return Color3uint8; } get => Color3uint8;
set { Color3uint8 = value; } set => Color3uint8 = value;
} }
public Color3uint8 Color3uint8 = Color3.FromRGB(163, 162, 165); public Color3uint8 Color3uint8 = Color3.FromRGB(163, 162, 165);
@ -2077,8 +2079,8 @@ namespace RobloxFiles
public Vector3 Position public Vector3 Position
{ {
get { return CFrame.Position; } get => CFrame.Position;
set { CFrame.Position = value; } set => CFrame.Position = value;
} }
public float Reflectance; public float Reflectance;
@ -2091,8 +2093,8 @@ namespace RobloxFiles
public Vector3 Size public Vector3 Size
{ {
get { return size; } get => size;
set { size = value; } set => size = value;
} }
public float TopParamA = -0.5f; public float TopParamA = -0.5f;
@ -2105,8 +2107,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public BrickColor brickColor public BrickColor brickColor
{ {
get { return BrickColor; } get => BrickColor;
set { BrickColor = value; } set => BrickColor = value;
} }
public Vector3 size = new Vector3(4, 1.2f, 2); public Vector3 size = new Vector3(4, 1.2f, 2);
@ -2121,15 +2123,15 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public FormFactor FormFactor public FormFactor FormFactor
{ {
get { return formFactorRaw; } get => formFactorRaw;
set { formFactorRaw = value; } set => formFactorRaw = value;
} }
[Obsolete] [Obsolete]
public FormFactor formFactor public FormFactor formFactor
{ {
get { return FormFactor; } get => FormFactor;
set { FormFactor = value; } set => FormFactor = value;
} }
public FormFactor formFactorRaw = FormFactor.Brick; public FormFactor formFactorRaw = FormFactor.Brick;
@ -2139,8 +2141,8 @@ namespace RobloxFiles
{ {
public PartType Shape public PartType Shape
{ {
get { return shape; } get => shape;
set { shape = value; } set => shape = value;
} }
public PartType shape = PartType.Block; public PartType shape = PartType.Block;
@ -2207,8 +2209,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public Content MeshID public Content MeshID
{ {
get { return MeshId; } get => MeshId;
set { MeshId = value; } set => MeshId = value;
} }
public Content MeshId = ""; public Content MeshId = "";
@ -2239,8 +2241,8 @@ namespace RobloxFiles
{ {
public Style Style public Style Style
{ {
get { return style; } get => style;
set { style = value; } set => style = value;
} }
public Style style = Style.AlternatingSupports; public Style style = Style.AlternatingSupports;
@ -2289,6 +2291,7 @@ namespace RobloxFiles
public bool FilteringEnabled; public bool FilteringEnabled;
public float Gravity = 196.2f; public float Gravity = 196.2f;
public InterpolationThrottlingMode InterpolationThrottling = InterpolationThrottlingMode.Default; public InterpolationThrottlingMode InterpolationThrottling = InterpolationThrottlingMode.Default;
public MeshPartHeads MeshPartHeads = MeshPartHeads.Default;
public bool StreamingEnabled; public bool StreamingEnabled;
public int StreamingMinRadius = 64; public int StreamingMinRadius = 64;
public StreamingPauseMode StreamingPauseMode = StreamingPauseMode.Default; public StreamingPauseMode StreamingPauseMode = StreamingPauseMode.Default;
@ -2345,8 +2348,8 @@ namespace RobloxFiles
[Obsolete] [Obsolete]
public float VelocitySpread public float VelocitySpread
{ {
get { return SpreadAngle.X; } get => SpreadAngle.X;
set { SpreadAngle = new Vector2(value, value); } set => SpreadAngle = new Vector2(value, value);
} }
public float ZOffset; public float ZOffset;
@ -2426,6 +2429,9 @@ namespace RobloxFiles
{ {
IsService = true; IsService = true;
} }
public TriStateBoolean IsLuobuServer = TriStateBoolean.Unknown;
public TriStateBoolean LuobuWhitelisted = TriStateBoolean.Unknown;
} }
public class Pose : Instance public class Pose : Instance
@ -2698,20 +2704,20 @@ namespace RobloxFiles
public float Opacity public float Opacity
{ {
get { return opacity_xml; } get => opacity_xml;
set { opacity_xml = value; } set => opacity_xml = value;
} }
public float RiseVelocity public float RiseVelocity
{ {
get { return riseVelocity_xml; } get => riseVelocity_xml;
set { riseVelocity_xml = value; } set => riseVelocity_xml = value;
} }
public float Size public float Size
{ {
get { return size_xml; } get => size_xml;
set { size_xml = value; } set => size_xml = value;
} }
public float opacity_xml = 0.5f; public float opacity_xml = 0.5f;
@ -2734,22 +2740,22 @@ namespace RobloxFiles
public float MaxDistance public float MaxDistance
{ {
get { return xmlRead_MaxDistance_3; } get => xmlRead_MaxDistance_3;
set { xmlRead_MaxDistance_3 = value; } set => xmlRead_MaxDistance_3 = value;
} }
[Obsolete] [Obsolete]
public float MinDistance public float MinDistance
{ {
get { return EmitterSize; } get => EmitterSize;
set { EmitterSize = value; } set => EmitterSize = value;
} }
[Obsolete] [Obsolete]
public float Pitch public float Pitch
{ {
get { return PlaybackSpeed; } get => PlaybackSpeed;
set { PlaybackSpeed = value; } set => PlaybackSpeed = value;
} }
public bool PlayOnRemove; public bool PlayOnRemove;
@ -2764,8 +2770,8 @@ namespace RobloxFiles
public float xmlRead_MinDistance_3 public float xmlRead_MinDistance_3
{ {
get { return EmitterSize; } get => EmitterSize;
set { EmitterSize = value; } set => EmitterSize = value;
} }
} }
@ -2863,8 +2869,8 @@ namespace RobloxFiles
{ {
public Color3 Color public Color3 Color
{ {
get { return SparkleColor; } get => SparkleColor;
set { SparkleColor = value; } set => SparkleColor = value;
} }
public bool Enabled = true; public bool Enabled = true;
@ -3290,8 +3296,8 @@ namespace RobloxFiles
{ {
public double ConstrainedValue public double ConstrainedValue
{ {
get { return value; } get => value;
set { this.value = value; } set => this.value = value;
} }
public double MaxValue = 1; public double MaxValue = 1;
@ -3299,8 +3305,8 @@ namespace RobloxFiles
public double Value public double Value
{ {
get { return value; } get => value;
set { this.value = value; } set => this.value = value;
} }
public double value; public double value;
@ -3310,8 +3316,8 @@ namespace RobloxFiles
{ {
public long ConstrainedValue public long ConstrainedValue
{ {
get { return value; } get => value;
set { this.value = value; } set => this.value = value;
} }
public long MaxValue = 10; public long MaxValue = 10;
@ -3319,8 +3325,8 @@ namespace RobloxFiles
public long Value public long Value
{ {
get { return value; } get => value;
set { this.value = value; } set => this.value = value;
} }
public long value; public long value;
@ -3392,20 +3398,27 @@ namespace RobloxFiles
{ {
public CFrame CFrame0 = new CFrame(); public CFrame CFrame0 = new CFrame();
public CFrame CFrame1 = new CFrame(); public CFrame CFrame1 = new CFrame();
public bool Enabled = true;
public bool Enabled
{
get => EnabledInternal;
set => EnabledInternal = value;
}
public bool EnabledInternal = true;
public BasePart Part0 public BasePart Part0
{ {
get { return Part0Internal; } get => Part0Internal;
set { Part0Internal = value; } set => Part0Internal = value;
} }
public BasePart Part0Internal; public BasePart Part0Internal;
public BasePart Part1 public BasePart Part1
{ {
get { return Part1Internal; } get => Part1Internal;
set { Part1Internal = value; } set => Part1Internal = value;
} }
public BasePart Part1Internal; public BasePart Part1Internal;

View File

@ -1,5 +1,5 @@
// Auto-generated list of Roblox enums. // Auto-generated list of Roblox enums.
// Updated as of 0.448.0.411244 // Updated as of 0.449.1.411731
namespace RobloxFiles.Enums namespace RobloxFiles.Enums
{ {
@ -43,6 +43,14 @@ namespace RobloxFiles.Enums
ScaleWithParentSize ScaleWithParentSize
} }
public enum AutomaticSize
{
None,
X,
Y,
XY
}
public enum Axis public enum Axis
{ {
X, X,
@ -235,7 +243,32 @@ namespace RobloxFiles.Enums
Gotham, Gotham,
GothamSemibold, GothamSemibold,
GothamBold, GothamBold,
GothamBlack GothamBlack,
AmaticSC,
Bangers,
Creepster,
DenkOne,
Fondamento,
FredokaOne,
GrenzeGotisch,
IndieFlower,
JosefinSans,
Jura,
Kalam,
LuckiestGuy,
Merriweather,
Michroma,
Nunito,
Oswald,
PatrickHand,
PermanentMarker,
Roboto,
RobotoCondensed,
RobotoMono,
Sarpanch,
SpecialElite,
TitilliumWeb,
Ubuntu
} }
public enum FontSize public enum FontSize
@ -398,6 +431,13 @@ namespace RobloxFiles.Enums
Water = 2048 Water = 2048
} }
public enum MeshPartHeads
{
Default,
Disabled,
Enabled
}
public enum MeshType public enum MeshType
{ {
Head, Head,
@ -660,6 +700,13 @@ namespace RobloxFiles.Enums
Bottom Bottom
} }
public enum TriStateBoolean
{
Unknown,
True,
False
}
public enum VerticalAlignment public enum VerticalAlignment
{ {
Center, Center,

Binary file not shown.

View File

@ -612,6 +612,7 @@ return
{ {
Part0Internal = "Class:BasePart"; Part0Internal = "Class:BasePart";
Part1Internal = "Class:BasePart"; Part1Internal = "Class:BasePart";
EnabledInternal = "bool";
CFrame0 = "CFrame"; CFrame0 = "CFrame";
CFrame1 = "CFrame"; CFrame1 = "CFrame";
@ -621,6 +622,7 @@ return
{ {
CFrame0 = CFrame.new(); CFrame0 = CFrame.new();
CFrame1 = CFrame.new(); CFrame1 = CFrame.new();
EnabledInternal = true;
Part0 = Instance.new("Part"); Part0 = Instance.new("Part");
Part1 = Instance.new("Part"); Part1 = Instance.new("Part");
@ -630,6 +632,7 @@ return
{ {
Part0 = "Part0Internal"; Part0 = "Part0Internal";
Part1 = "Part1Internal"; Part1 = "Part1Internal";
Enabled = "EnabledInternal";
}; };
}; };
@ -657,6 +660,7 @@ return
StreamingPauseMode = Enum.StreamingPauseMode.Default; StreamingPauseMode = Enum.StreamingPauseMode.Default;
TerrainWeldsFixed = true; TerrainWeldsFixed = true;
MeshPartHeads = Enum.MeshPartHeads.Default;
} }
} }
} }

View File

@ -502,7 +502,7 @@ local function generateClasses()
end end
openStack() openStack()
writeLine("get { return %s; }", get) writeLine("get => %s;", get)
if set:find('\n') then if set:find('\n') then
writeLine() writeLine()
@ -516,7 +516,7 @@ local function generateClasses()
closeStack() closeStack()
else else
writeLine("set { %s; }", set) writeLine("set => %s;", set)
end end
closeStack() closeStack()

Binary file not shown.