This commit is contained in:
Razmoth
2023-08-21 21:45:57 +04:00
parent 6da2387c8c
commit 0bd3fa6db2
48 changed files with 967 additions and 510 deletions

View File

@@ -1,4 +1,6 @@
namespace AssetStudio
using System.Text;
namespace AssetStudio
{
public class ObjectInfo
{
@@ -11,5 +13,18 @@
public long m_PathID;
public SerializedType serializedType;
public override string ToString()
{
var sb = new StringBuilder();
sb.Append($"byteStart: 0x{byteStart:X8} | ");
sb.Append($"byteSize: 0x{byteSize:X8} | ");
sb.Append($"typeID: {typeID} | ");
sb.Append($"classID: {classID} | ");
sb.Append($"isDestroyed: {isDestroyed} | ");
sb.Append($"stripped: {stripped} | ");
sb.Append($"PathID: {m_PathID}");
return sb.ToString();
}
}
}