rename ToMeta to GetMeta

This commit is contained in:
Mikhail 2026-03-15 20:21:16 +08:00
parent b1192d32d9
commit 48014f3b73

View File

@ -322,7 +322,11 @@ namespace DCFApixels.DragonECS
#endif
return EcsDebugUtility.GetTypeMeta(self);
}
public static TypeMeta ToMeta(this Type self)
public static TypeMeta GetMeta(this Type self)
{
return EcsDebugUtility.GetTypeMeta(self);
}
public static TypeMeta GetMeta(this RuntimeTypeHandle self)
{
return EcsDebugUtility.GetTypeMeta(self);
}