0.455.0.413788

This commit is contained in:
CloneTrooper1019 2020-11-10 13:08:45 -06:00
parent 6be4f2198e
commit 6c8151182d
3 changed files with 31 additions and 6 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.454.0.413308 // Updated as of 0.455.0.413788
using System; using System;
@ -72,6 +72,14 @@ namespace RobloxFiles
{ {
} }
public class AppUpdateService : Instance
{
public AppUpdateService()
{
IsService = true;
}
}
public class AssetCounterService : Instance public class AssetCounterService : Instance
{ {
public AssetCounterService() public AssetCounterService()
@ -2298,6 +2306,10 @@ namespace RobloxFiles
public BasePart PrimaryPart; public BasePart PrimaryPart;
} }
public class Actor : Model
{
}
public abstract class WorldRoot : Model public abstract class WorldRoot : Model
{ {
} }
@ -2415,6 +2427,11 @@ namespace RobloxFiles
{ {
IsService = true; IsService = true;
} }
public string EmulatedCountryCode = "";
public string EmulatedGameLocale = "";
public bool PlayerEmulationEnabled;
public string SerializedEmulatedPolicyInfo = "";
} }
public class Players : Instance public class Players : Instance
@ -2461,16 +2478,24 @@ namespace RobloxFiles
public TriStateBoolean LuobuWhitelisted = TriStateBoolean.Unknown; public TriStateBoolean LuobuWhitelisted = TriStateBoolean.Unknown;
} }
public class Pose : Instance public abstract class PoseBase : Instance
{ {
public CFrame CFrame = new CFrame();
public PoseEasingDirection EasingDirection = PoseEasingDirection.In; public PoseEasingDirection EasingDirection = PoseEasingDirection.In;
public PoseEasingStyle EasingStyle = PoseEasingStyle.Linear; public PoseEasingStyle EasingStyle = PoseEasingStyle.Linear;
public float Weight = 1;
}
public class NumberPose : PoseBase
{
public double Value;
}
public class Pose : PoseBase
{
public CFrame CFrame = new CFrame();
[Obsolete] [Obsolete]
public float MaskWeight; public float MaskWeight;
public float Weight = 1;
} }
public abstract class PostEffect : Instance public abstract class PostEffect : Instance

View File

@ -1,5 +1,5 @@
// Auto-generated list of Roblox enums. // Auto-generated list of Roblox enums.
// Updated as of 0.454.0.413308 // Updated as of 0.455.0.413788
namespace RobloxFiles.Enums namespace RobloxFiles.Enums
{ {

Binary file not shown.