You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is currently not possible to find the Il2CppClass from a FieldInfo's Il2CppType.
Getting the underlying TypeDefinition from an Il2CppType – much like getting the MonoClass from a MonoType – is currently not supported. The relevant pieces of the Il2CppType's data union are __klassIndex and typeHandle, with the latter being the more relevant one.
With it, it needs to be figured out how to get the offset of the TypeDefinition which corresponds to the Il2CppClass' index in the TypeDefinitionTable.
It is currently not possible to find the
Il2CppClass
from aFieldInfo
'sIl2CppType
.Getting the underlying
TypeDefinition
from anIl2CppType
– much like getting theMonoClass
from aMonoType
– is currently not supported. The relevant pieces of theIl2CppType
'sdata
union are__klassIndex
andtypeHandle
, with the latter being the more relevant one.With it, it needs to be figured out how to get the offset of the
TypeDefinition
which corresponds to theIl2CppClass
' index in theTypeDefinitionTable
.Some helpful code may be located at
Perfare/Il2CppDumper
.The text was updated successfully, but these errors were encountered: