Added serialization support for PackageLinks.
This commit is contained in:
parent
01775f9691
commit
5981bd9c30
@ -2152,6 +2152,28 @@ namespace RobloxFiles
|
|||||||
public bool TerrainWeldsFixed = true;
|
public bool TerrainWeldsFixed = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class PackageLink : Instance
|
||||||
|
{
|
||||||
|
public bool AutoUpdate = false;
|
||||||
|
public long OriginalHash = 0;
|
||||||
|
public Content PackageIdSerialize = "";
|
||||||
|
public string SymbolicLink = "";
|
||||||
|
|
||||||
|
public long VersionId
|
||||||
|
{
|
||||||
|
get { return VersionIdSerialize; }
|
||||||
|
set { VersionIdSerialize = value; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public long VersionIdSerialize = 0;
|
||||||
|
|
||||||
|
public long VersionNumber
|
||||||
|
{
|
||||||
|
get { return VersionIdSerialize; }
|
||||||
|
set { VersionIdSerialize = value; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public class PackageService : Instance
|
public class PackageService : Instance
|
||||||
{
|
{
|
||||||
public PackageService()
|
public PackageService()
|
||||||
|
Binary file not shown.
@ -353,6 +353,10 @@ local function generateClasses()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if class.Name == "PackageLink" then
|
||||||
|
registerClass = true
|
||||||
|
end
|
||||||
|
|
||||||
if registerClass then
|
if registerClass then
|
||||||
local objectType
|
local objectType
|
||||||
|
|
||||||
|
@ -385,6 +385,38 @@ return
|
|||||||
Remove = {"SelectedTheme"}
|
Remove = {"SelectedTheme"}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
PackageLink =
|
||||||
|
{
|
||||||
|
Add =
|
||||||
|
{
|
||||||
|
VersionId = "int64";
|
||||||
|
|
||||||
|
OriginalHash = "int64";
|
||||||
|
SymbolicLink = "string";
|
||||||
|
|
||||||
|
VersionIdSerialize = "int64";
|
||||||
|
PackageIdSerialize = "Content";
|
||||||
|
};
|
||||||
|
|
||||||
|
Defaults =
|
||||||
|
{
|
||||||
|
AutoUpdate = false;
|
||||||
|
|
||||||
|
OriginalHash = 0;
|
||||||
|
SymbolicLink = "";
|
||||||
|
|
||||||
|
VersionIdSerialize = 0;
|
||||||
|
PackageIdSerialize = "";
|
||||||
|
};
|
||||||
|
|
||||||
|
Redirect =
|
||||||
|
{
|
||||||
|
PackageId = "PackageIdSerialize";
|
||||||
|
VersionId = "VersionIdSerialize";
|
||||||
|
VersionNumber = "VersionIdSerialize";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
Part =
|
Part =
|
||||||
{
|
{
|
||||||
Add = { shape = "Enum:PartType" };
|
Add = { shape = "Enum:PartType" };
|
||||||
|
Loading…
Reference in New Issue
Block a user