0.469.0.418830

This commit is contained in:
Max 2021-03-09 16:56:27 -06:00
parent 4c7387874d
commit 1a1c04bf9a
7 changed files with 56 additions and 12 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.467.0.418297 // Updated as of 0.469.0.418830
using System; using System;
@ -428,6 +428,14 @@ namespace RobloxFiles
} }
} }
public class CalloutService : Instance
{
public CalloutService()
{
IsService = true;
}
}
public class Camera : Instance public class Camera : Instance
{ {
public CFrame CFrame = new CFrame(0, 20, 20, 1, 0, 0, 0, 0.70711f, 0.70711f, 0, -0.70711f, 0.70711f); public CFrame CFrame = new CFrame(0, 20, 20, 1, 0, 0, 0, 0.70711f, 0.70711f, 0, -0.70711f, 0.70711f);
@ -665,8 +673,8 @@ namespace RobloxFiles
public class RodConstraint : Constraint public class RodConstraint : Constraint
{ {
public float Length = 5; public float Length = 5;
public float LimitAngle0 = 90f; public float LimitAngle0 = 90;
public float LimitAngle1 = 90f; public float LimitAngle1 = 90;
public bool LimitsEnabled; public bool LimitsEnabled;
public float Thickness = 0.1f; public float Thickness = 0.1f;
} }
@ -1216,6 +1224,7 @@ namespace RobloxFiles
} }
public float LineHeight = 1; public float LineHeight = 1;
public int MaxVisibleGraphemes = -1;
public bool RichText; public bool RichText;
public string Text = "Button"; public string Text = "Button";
@ -1286,6 +1295,7 @@ namespace RobloxFiles
} }
public float LineHeight = 1; public float LineHeight = 1;
public int MaxVisibleGraphemes = -1;
public bool RichText; public bool RichText;
public string Text = "Label"; public string Text = "Label";
@ -1359,6 +1369,7 @@ namespace RobloxFiles
} }
public float LineHeight = 1; public float LineHeight = 1;
public int MaxVisibleGraphemes = -1;
public bool MultiLine; public bool MultiLine;
public Color3 PlaceholderColor3 = Color3.FromRGB(178, 178, 178); public Color3 PlaceholderColor3 = Color3.FromRGB(178, 178, 178);
public string PlaceholderText = ""; public string PlaceholderText = "";
@ -2906,9 +2917,7 @@ 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] [Obsolete]
@ -3432,7 +3441,7 @@ namespace RobloxFiles
IsService = true; IsService = true;
} }
public string CachedData = ""; public string CachedData = "{\"lastKnownPublishRequest\":0,\"users\":[],\"lastSaveTime\":0}";
} }
public class UserInputService : Instance public class UserInputService : Instance

View File

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

View File

@ -1,7 +1,4 @@
$pluginName = "GenerateApiDump.rbxm" $pluginName = "GenerateApiDump.rbxm"
$destPath = "$env:localappdata\Roblox\Plugins\" + $pluginName
$studioKey = "HKCU:\Software\Roblox\RobloxStudio"
$contentDir = Get-ItemPropertyValue -Path $studioKey -Name "ContentFolder"
$destPath = $contentDir + "/../BuiltInPlugins/" + $pluginName
Copy-Item -Path $pluginName -Destination $destPath Copy-Item -Path $pluginName -Destination $destPath

Binary file not shown.

View File

@ -1,3 +1,5 @@
local HttpService = game:GetService("HttpService")
local function UseColor3(propName) local function UseColor3(propName)
return return
{ {
@ -447,6 +449,21 @@ return
{ {
Defaults = { MaxPlayersInternal = 16 } Defaults = { MaxPlayersInternal = 16 }
}; };
PolicyService =
{
Add =
{
IsLuobuServer = TryDefineEnum("TriStateBoolean");
LuobuWhitelisted = TryDefineEnum("TriStateBoolean");
};
Defaults =
{
IsLuobuServer = TryGetEnumItem("TriStateBoolean", "Unknown");
LuobuWhitelisted = TryGetEnumItem("TriStateBoolean", "Unknown");
};
};
SelectionBox = SelectionBox =
{ {
@ -501,7 +518,6 @@ return
Add = Add =
{ {
MaxDistance = "float"; -- ?! MaxDistance = "float"; -- ?!
xmlRead_MaxDistance_3 = "float"; xmlRead_MaxDistance_3 = "float";
xmlRead_MinDistance_3 = "float"; xmlRead_MinDistance_3 = "float";
}; };
@ -628,6 +644,22 @@ return
UnvalidatedAssetService = UnvalidatedAssetService =
{ {
Add = { CachedData = "string" }; Add = { CachedData = "string" };
Defaults =
{
CachedData = HttpService:JSONEncode
{
users = {};
lastSaveTime = 0;
lastKnownPublishRequest = 0;
}
}
};
UserInputService =
{
Add = { LegacyInputEventsEnabled = "bool" };
Defaults = { LegacyInputEventsEnabled = true };
}; };
ViewportFrame = ViewportFrame =

View File

@ -10,6 +10,7 @@ local stackLevel = 0
local singletons = local singletons =
{ {
Terrain = workspace:WaitForChild("Terrain", 1000); Terrain = workspace:WaitForChild("Terrain", 1000);
ParabolaAdornment = Instance.new("BoxHandleAdornment"); -- close enough
StarterPlayerScripts = StarterPlayer:WaitForChild("StarterPlayerScripts"); StarterPlayerScripts = StarterPlayer:WaitForChild("StarterPlayerScripts");
StarterCharacterScripts = StarterPlayer:WaitForChild("StarterCharacterScripts"); StarterCharacterScripts = StarterPlayer:WaitForChild("StarterCharacterScripts");
} }
@ -611,6 +612,11 @@ local function generateClasses()
enumMap[enumName] = true enumMap[enumName] = true
end end
end end
if className == "Sound" and propName == "EmitterSize" then
-- .____.
propTags.Deprecated = false
end
if propTags.Deprecated then if propTags.Deprecated then
if not firstLine then if not firstLine then

Binary file not shown.