Replace "type" with "classID" in object dumps

This commit is contained in:
VaDiM 2024-08-08 18:14:38 +03:00
parent 8704feb079
commit 573b87b570
2 changed files with 5 additions and 4 deletions

View File

@ -17,9 +17,11 @@ namespace AssetStudio
protected BuildType buildType;
[JsonIgnore]
public BuildTarget platform;
[JsonIgnore]
public ClassIDType type;
[JsonIgnore]
public SerializedType serializedType;
public int classID;
public uint byteSize;
private static JsonSerializerOptions jsonOptions;
@ -49,6 +51,7 @@ namespace AssetStudio
buildType = reader.buildType;
platform = reader.platform;
serializedType = reader.serializedType;
classID = reader.classID;
byteSize = reader.byteSize;
if (platform == BuildTarget.NoTarget)

View File

@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace AssetStudio
{
@ -12,6 +8,7 @@ namespace AssetStudio
public long m_PathID;
public long byteStart;
public uint byteSize;
public int classID;
public ClassIDType type;
public SerializedType serializedType;
public BuildTarget platform;
@ -26,6 +23,7 @@ namespace AssetStudio
m_PathID = objectInfo.m_PathID;
byteStart = objectInfo.byteStart;
byteSize = objectInfo.byteSize;
classID = objectInfo.classID;
if (Enum.IsDefined(typeof(ClassIDType), objectInfo.classID))
{
type = (ClassIDType)objectInfo.classID;