0.458.1.415373

This commit is contained in:
CloneTrooper1019 2020-12-06 16:04:49 -06:00
parent 6c8151182d
commit 4dcf9879ae
5 changed files with 52 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.455.0.413788 // Updated as of 0.458.1.415373
using System; using System;
@ -198,6 +198,29 @@ namespace RobloxFiles
public bool ShowDevelopmentGui = true; public bool ShowDevelopmentGui = true;
} }
public abstract class BaseWrap : Instance
{
public Content CageMeshId = "";
public CFrame CageOrigin = new CFrame();
public CFrame ImportOrigin = new CFrame();
}
public class WrapLayer : BaseWrap
{
public CFrame BindOffset = new CFrame();
public bool Enabled = true;
public int Order = 1;
public float Puffiness = 1;
public Content ReferenceMeshId = "";
public CFrame ReferenceOrigin = new CFrame();
public float ShrinkFactor;
}
public class WrapTarget : BaseWrap
{
public float Stiffness = 0.9f;
}
public class Beam : Instance public class Beam : Instance
{ {
public Attachment Attachment0; public Attachment Attachment0;
@ -546,6 +569,12 @@ namespace RobloxFiles
public float MaxActivationDistance = 32; public float MaxActivationDistance = 32;
} }
public class Clouds : Instance
{
public float Cover = 0.5f;
public float Density = 0.7f;
}
public class CollectionService : Instance public class CollectionService : Instance
{ {
public CollectionService() public CollectionService()
@ -1598,6 +1627,14 @@ namespace RobloxFiles
} }
} }
public class HeightmapImporterService : Instance
{
public HeightmapImporterService()
{
IsService = true;
}
}
public class HttpRbxApiService : Instance public class HttpRbxApiService : Instance
{ {
public HttpRbxApiService() public HttpRbxApiService()
@ -2540,6 +2577,7 @@ namespace RobloxFiles
public class ProximityPrompt : Instance public class ProximityPrompt : Instance
{ {
public string ActionText = "Interact"; public string ActionText = "Interact";
public bool AutoLocalize = true;
public bool ClickablePrompt = true; public bool ClickablePrompt = true;
public bool Enabled = true; public bool Enabled = true;
public ProximityPromptExclusivity Exclusivity = ProximityPromptExclusivity.OnePerButton; public ProximityPromptExclusivity Exclusivity = ProximityPromptExclusivity.OnePerButton;
@ -2549,6 +2587,7 @@ namespace RobloxFiles
public float MaxActivationDistance = 10; public float MaxActivationDistance = 10;
public string ObjectText = ""; public string ObjectText = "";
public bool RequiresLineOfSight = true; public bool RequiresLineOfSight = true;
public LocalizationTable RootLocalizationTable;
public ProximityPromptStyle Style = ProximityPromptStyle.Default; public ProximityPromptStyle Style = ProximityPromptStyle.Default;
public Vector2 UIOffset = new Vector2(); public Vector2 UIOffset = new Vector2();
} }
@ -2814,9 +2853,12 @@ namespace RobloxFiles
public class Sound : Instance public class Sound : Instance
{ {
[Obsolete]
public float EmitterSize = 10; public float EmitterSize = 10;
public bool Looped; public bool Looped;
[Obsolete]
public float MaxDistance public float MaxDistance
{ {
get => xmlRead_MaxDistance_3; get => xmlRead_MaxDistance_3;
@ -3098,6 +3140,13 @@ namespace RobloxFiles
} }
} }
public class TeleportOptions : Instance
{
public string ReservedServerAccessCode = "";
public string ServerInstanceId = "";
public bool ShouldReserveServer;
}
public class TeleportService : Instance public class TeleportService : Instance
{ {
public TeleportService() public TeleportService()

View File

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

Binary file not shown.

View File

@ -76,6 +76,7 @@ local function exportStream(label)
export.Archivable = false export.Archivable = false
export.Source = results export.Source = results
export.Name = label export.Name = label
export.Parent = workspace
plugin:OpenScript(export) plugin:OpenScript(export)
end end

Binary file not shown.