0.490.0.4900359

This commit is contained in:
Max 2021-08-10 22:53:03 -05:00
parent 3355c44190
commit 66245cb2c4
3 changed files with 38 additions and 2 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.489.1.4890338 // Updated as of 0.490.0.4900359
using System; using System;
@ -687,6 +687,19 @@ namespace RobloxFiles
public bool ReactionForceEnabled; public bool ReactionForceEnabled;
} }
public class LinearVelocityConstraint : Constraint
{
public Vector3 LineDirection = new Vector3(1, 0, 0);
public float LineVelocity;
public float MaxForce = 1000;
public Vector2 PlaneVelocity = new Vector2();
public Vector3 PrimaryTangentAxis = new Vector3(1, 0, 0);
public ActuatorRelativeTo RelativeTo = ActuatorRelativeTo.World;
public Vector3 SecondaryTangentAxis = new Vector3(0, 1, 0);
public Vector3 VectorVelocity = new Vector3();
public VelocityConstraintMode VelocityConstraintMode = VelocityConstraintMode.Vector;
}
public class RodConstraint : Constraint public class RodConstraint : Constraint
{ {
public float Length = 5; public float Length = 5;
@ -1262,6 +1275,7 @@ namespace RobloxFiles
public Vector2 ImageRectSize = new Vector2(); public Vector2 ImageRectSize = new Vector2();
public float ImageTransparency; public float ImageTransparency;
public Content PressedImage = ""; public Content PressedImage = "";
public ResamplerMode ResampleMode = ResamplerMode.Default;
public ScaleType ScaleType = ScaleType.Stretch; public ScaleType ScaleType = ScaleType.Stretch;
public Rect SliceCenter = new Rect(new Vector2(), new Vector2()); public Rect SliceCenter = new Rect(new Vector2(), new Vector2());
public float SliceScale = 1; public float SliceScale = 1;
@ -1333,6 +1347,7 @@ namespace RobloxFiles
public Vector2 ImageRectOffset = new Vector2(); public Vector2 ImageRectOffset = new Vector2();
public Vector2 ImageRectSize = new Vector2(); public Vector2 ImageRectSize = new Vector2();
public float ImageTransparency; public float ImageTransparency;
public ResamplerMode ResampleMode = ResamplerMode.Default;
public ScaleType ScaleType = ScaleType.Stretch; public ScaleType ScaleType = ScaleType.Stretch;
public Rect SliceCenter = new Rect(new Vector2(), new Vector2()); public Rect SliceCenter = new Rect(new Vector2(), new Vector2());
public float SliceScale = 1; public float SliceScale = 1;
@ -3773,6 +3788,14 @@ namespace RobloxFiles
} }
} }
public class VoiceChatService : Instance
{
public VoiceChatService()
{
IsService = true;
}
}
public class WeldConstraint : Instance public class WeldConstraint : Instance
{ {
public CFrame CFrame0 = new CFrame(); public CFrame CFrame0 = new CFrame();

View File

@ -1,5 +1,5 @@
// Auto-generated list of Roblox enums. // Auto-generated list of Roblox enums.
// Updated as of 0.487.1.426995 // Updated as of 0.490.0.4900359
namespace RobloxFiles.Enums namespace RobloxFiles.Enums
{ {
@ -889,6 +889,12 @@ namespace RobloxFiles.Enums
diff diff
} }
public enum ResamplerMode
{
Default,
Pixelated
}
public enum ReverbType public enum ReverbType
{ {
NoReverb, NoReverb,
@ -1092,6 +1098,13 @@ namespace RobloxFiles.Enums
False False
} }
public enum VelocityConstraintMode
{
Line,
Plane,
Vector
}
public enum VerticalAlignment public enum VerticalAlignment
{ {
Center, Center,

Binary file not shown.