0.487.1.426995

This commit is contained in:
Max 2021-07-28 09:52:16 -05:00
parent 1bff5b3c8e
commit ffe75acacf
3 changed files with 39 additions and 3 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.485.0.425755 // Updated as of 0.487.1.426995
using System; using System;
@ -26,6 +26,7 @@ namespace RobloxFiles
public class Accessory : Accoutrement public class Accessory : Accoutrement
{ {
public AccessoryType AccessoryType = AccessoryType.Unknown;
} }
public class Hat : Accoutrement public class Hat : Accoutrement
@ -692,6 +693,11 @@ namespace RobloxFiles
public float Length = 5; public float Length = 5;
public float Restitution; public float Restitution;
public float Thickness = 0.1f; public float Thickness = 0.1f;
public bool WinchEnabled;
public float WinchForce = 10000;
public float WinchResponsiveness = 45;
public float WinchSpeed = 2;
public float WinchTarget = 5;
} }
public abstract class SlidingBallConstraint : Constraint public abstract class SlidingBallConstraint : Constraint
@ -757,7 +763,11 @@ namespace RobloxFiles
{ {
public float Coils = 8; public float Coils = 8;
public float Damping = 0.01f; public float Damping = 0.01f;
[Obsolete]
public bool LimitEnabled; public bool LimitEnabled;
public bool LimitsEnabled;
public float MaxAngle = 45; public float MaxAngle = 45;
public float MaxTorque = float.MaxValue; public float MaxTorque = float.MaxValue;
public float Radius = 0.4f; public float Radius = 0.4f;
@ -988,6 +998,10 @@ namespace RobloxFiles
public bool Visible = true; public bool Visible = true;
} }
public class FaceControls : Instance
{
}
public abstract class FaceInstance : Instance public abstract class FaceInstance : Instance
{ {
public NormalId Face = NormalId.Front; public NormalId Face = NormalId.Front;
@ -2818,6 +2832,7 @@ namespace RobloxFiles
public string Constraint = ""; public string Constraint = "";
public bool Deprecated; public bool Deprecated;
public bool EditingDisabled; public bool EditingDisabled;
public string EditorType = "";
public string FFlag = ""; public string FFlag = "";
public bool IsBackend; public bool IsBackend;
public int PropertyOrder = 5000; public int PropertyOrder = 5000;
@ -2826,7 +2841,6 @@ namespace RobloxFiles
public double UIMaximum; public double UIMaximum;
public double UIMinimum; public double UIMinimum;
public double UINumTicks; public double UINumTicks;
public string summary = "";
} }
public class ReflectionMetadataClass : ReflectionMetadataItem public class ReflectionMetadataClass : ReflectionMetadataItem

View File

@ -1,8 +1,30 @@
// Auto-generated list of Roblox enums. // Auto-generated list of Roblox enums.
// Updated as of 0.485.0.425755 // Updated as of 0.487.1.426995
namespace RobloxFiles.Enums namespace RobloxFiles.Enums
{ {
public enum AccessoryType
{
Unknown,
Hat,
Hair,
Face,
Neck,
Shoulder,
Front,
Back,
Waist,
TShirt,
Shirt,
Pants,
Jacket,
Sweater,
Shorts,
LeftShoe,
RightShoe,
DressSkirt
}
public enum ActuatorRelativeTo public enum ActuatorRelativeTo
{ {
Attachment0, Attachment0,

Binary file not shown.