0.547.0.5470549
This commit is contained in:
parent
aaaa10d27d
commit
7b0cb15575
@ -1,5 +1,5 @@
|
|||||||
// Auto-generated list of creatable Roblox classes.
|
// Auto-generated list of creatable Roblox classes.
|
||||||
// Updated as of 0.544.0.5440300
|
// Updated as of 0.547.0.5470549
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
@ -25,6 +25,11 @@ namespace RobloxFiles
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class AdPortal : Instance
|
||||||
|
{
|
||||||
|
public AdPortalType PortalType = AdPortalType.Forward;
|
||||||
|
}
|
||||||
|
|
||||||
public class AdService : Instance
|
public class AdService : Instance
|
||||||
{
|
{
|
||||||
public AdService()
|
public AdService()
|
||||||
@ -108,6 +113,7 @@ namespace RobloxFiles
|
|||||||
|
|
||||||
public class Animator : Instance
|
public class Animator : Instance
|
||||||
{
|
{
|
||||||
|
public bool PreferLodEnabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public class AppUpdateService : Instance
|
public class AppUpdateService : Instance
|
||||||
@ -998,7 +1004,7 @@ namespace RobloxFiles
|
|||||||
|
|
||||||
public class AirController : ControllerBase
|
public class AirController : ControllerBase
|
||||||
{
|
{
|
||||||
public bool CancelAirMomentum = true;
|
public bool CancelAirMomentum;
|
||||||
public float MoveMaxForce = 10000;
|
public float MoveMaxForce = 10000;
|
||||||
public float OrientationMaxTorque = 10000;
|
public float OrientationMaxTorque = 10000;
|
||||||
public float OrientationSpeedFactor = 1;
|
public float OrientationSpeedFactor = 1;
|
||||||
@ -1022,7 +1028,7 @@ namespace RobloxFiles
|
|||||||
public float DecelerationTime = 0;
|
public float DecelerationTime = 0;
|
||||||
public float Friction = 2;
|
public float Friction = 2;
|
||||||
public float FrictionWeight = 1;
|
public float FrictionWeight = 1;
|
||||||
public float MaxSlopeAngle = 89;
|
public float GroundOffset = 1;
|
||||||
public float StandForce = 10000;
|
public float StandForce = 10000;
|
||||||
public float StandSpeed = 100;
|
public float StandSpeed = 100;
|
||||||
public float TurningFactor = 1;
|
public float TurningFactor = 1;
|
||||||
@ -1042,7 +1048,6 @@ namespace RobloxFiles
|
|||||||
public float BaseMoveSpeed = 16;
|
public float BaseMoveSpeed = 16;
|
||||||
public float BaseTurnSpeed = 8;
|
public float BaseTurnSpeed = 8;
|
||||||
public Vector3 FacingDirection = new Vector3(0, 0, 1);
|
public Vector3 FacingDirection = new Vector3(0, 0, 1);
|
||||||
public float HipHeight = 0;
|
|
||||||
public Vector3 MovingDirection = new Vector3();
|
public Vector3 MovingDirection = new Vector3();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1892,11 +1897,21 @@ namespace RobloxFiles
|
|||||||
{
|
{
|
||||||
public bool Active = true;
|
public bool Active = true;
|
||||||
public Instance Adornee;
|
public Instance Adornee;
|
||||||
public NormalId Face = NormalId.Front;
|
public NormalId Face = NormalId.Back;
|
||||||
|
}
|
||||||
|
|
||||||
|
public class AdGui : SurfaceGuiBase
|
||||||
|
{
|
||||||
|
public AdShape AdShape = AdShape.HorizontalRectangle;
|
||||||
}
|
}
|
||||||
|
|
||||||
public class SurfaceGui : SurfaceGuiBase
|
public class SurfaceGui : SurfaceGuiBase
|
||||||
{
|
{
|
||||||
|
public SurfaceGui() : base()
|
||||||
|
{
|
||||||
|
Face = NormalId.Front;
|
||||||
|
}
|
||||||
|
|
||||||
public bool AlwaysOnTop;
|
public bool AlwaysOnTop;
|
||||||
public float Brightness = 1;
|
public float Brightness = 1;
|
||||||
public Vector2 CanvasSize = new Vector2(800, 600);
|
public Vector2 CanvasSize = new Vector2(800, 600);
|
||||||
@ -2146,6 +2161,7 @@ namespace RobloxFiles
|
|||||||
|
|
||||||
public HumanoidDisplayDistanceType DisplayDistanceType = HumanoidDisplayDistanceType.Viewer;
|
public HumanoidDisplayDistanceType DisplayDistanceType = HumanoidDisplayDistanceType.Viewer;
|
||||||
public string DisplayName = "";
|
public string DisplayName = "";
|
||||||
|
public bool EvaluateStateMachine = true;
|
||||||
|
|
||||||
public float Health
|
public float Health
|
||||||
{
|
{
|
||||||
@ -2229,10 +2245,9 @@ namespace RobloxFiles
|
|||||||
public bool Enabled = true;
|
public bool Enabled = true;
|
||||||
public Instance EndEffector;
|
public Instance EndEffector;
|
||||||
public CFrame Offset = new CFrame();
|
public CFrame Offset = new CFrame();
|
||||||
public Instance Pole;
|
|
||||||
public int Priority = 0;
|
public int Priority = 0;
|
||||||
public Instance Target;
|
public Instance Target;
|
||||||
public IKControlType Type = IKControlType.Null;
|
public IKControlType Type = IKControlType.Transform;
|
||||||
public float Weight = 1;
|
public float Weight = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2266,6 +2281,9 @@ namespace RobloxFiles
|
|||||||
{
|
{
|
||||||
IsService = true;
|
IsService = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool HighCompression;
|
||||||
|
public bool ZstdCompression;
|
||||||
}
|
}
|
||||||
|
|
||||||
public class InsertService : Instance
|
public class InsertService : Instance
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Auto-generated list of Roblox enums.
|
// Auto-generated list of Roblox enums.
|
||||||
// Updated as of 0.544.0.5440300
|
// Updated as of 0.547.0.5470549
|
||||||
|
|
||||||
namespace RobloxFiles.Enums
|
namespace RobloxFiles.Enums
|
||||||
{
|
{
|
||||||
@ -41,6 +41,17 @@ namespace RobloxFiles.Enums
|
|||||||
Servo
|
Servo
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public enum AdPortalType
|
||||||
|
{
|
||||||
|
Forward,
|
||||||
|
Return
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum AdShape
|
||||||
|
{
|
||||||
|
HorizontalRectangle = 1
|
||||||
|
}
|
||||||
|
|
||||||
public enum AdornCullingMode
|
public enum AdornCullingMode
|
||||||
{
|
{
|
||||||
Automatic,
|
Automatic,
|
||||||
@ -456,12 +467,10 @@ namespace RobloxFiles.Enums
|
|||||||
|
|
||||||
public enum IKControlType
|
public enum IKControlType
|
||||||
{
|
{
|
||||||
Null,
|
Transform,
|
||||||
Position,
|
Position,
|
||||||
Rotation,
|
Rotation,
|
||||||
Transform,
|
LookAt
|
||||||
LookAt,
|
|
||||||
Length
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum InOut
|
public enum InOut
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user