0.403.1.344866
This commit is contained in:
parent
d155117a7e
commit
42c85b1976
@ -1,5 +1,5 @@
|
|||||||
// Auto-generated list of creatable Roblox classes.
|
// Auto-generated list of creatable Roblox classes.
|
||||||
// Updated as of 0.401.0.338533
|
// Updated as of 0.403.1.344866
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
@ -1188,6 +1188,7 @@ namespace RobloxFiles
|
|||||||
public class TextBox : GuiObject
|
public class TextBox : GuiObject
|
||||||
{
|
{
|
||||||
public bool ClearTextOnFocus = true;
|
public bool ClearTextOnFocus = true;
|
||||||
|
public bool EnableRealtimeFilteringHints = false; // [Load-only]
|
||||||
public Font Font = Font.Legacy;
|
public Font Font = Font.Legacy;
|
||||||
|
|
||||||
[Obsolete]
|
[Obsolete]
|
||||||
@ -1197,7 +1198,6 @@ namespace RobloxFiles
|
|||||||
set { TextSize = FontUtility.GetFontSize(value); }
|
set { TextSize = FontUtility.GetFontSize(value); }
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool IsPassword = false; // [Load-only]
|
|
||||||
public float LineHeight = 1;
|
public float LineHeight = 1;
|
||||||
public bool ManualFocusRelease = false; // [Load-only]
|
public bool ManualFocusRelease = false; // [Load-only]
|
||||||
public bool MultiLine = false;
|
public bool MultiLine = false;
|
||||||
@ -2252,6 +2252,14 @@ namespace RobloxFiles
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class PolicyService : Instance
|
||||||
|
{
|
||||||
|
public PolicyService()
|
||||||
|
{
|
||||||
|
IsService = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public class Pose : Instance
|
public class Pose : Instance
|
||||||
{
|
{
|
||||||
public CFrame CFrame = new CFrame();
|
public CFrame CFrame = new CFrame();
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Auto-generated list of Roblox enums.
|
// Auto-generated list of Roblox enums.
|
||||||
// Updated as of 0.401.0.338533
|
// Updated as of 0.403.1.344866
|
||||||
|
|
||||||
namespace RobloxFiles.Enums
|
namespace RobloxFiles.Enums
|
||||||
{
|
{
|
||||||
@ -615,8 +615,7 @@ namespace RobloxFiles.Enums
|
|||||||
public enum ExplosionType
|
public enum ExplosionType
|
||||||
{
|
{
|
||||||
NoCraters,
|
NoCraters,
|
||||||
Craters,
|
Craters
|
||||||
CratersAndDebris
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum FillDirection
|
public enum FillDirection
|
||||||
@ -1968,7 +1967,8 @@ namespace RobloxFiles.Enums
|
|||||||
NoSuggestions,
|
NoSuggestions,
|
||||||
Number,
|
Number,
|
||||||
Email,
|
Email,
|
||||||
Phone
|
Phone,
|
||||||
|
Password
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum TextTruncate
|
public enum TextTruncate
|
||||||
|
Loading…
Reference in New Issue
Block a user