This commit is contained in:
Mikhail 2026-04-15 15:33:28 +08:00
parent 87c98f708e
commit d3e77026ff
2 changed files with 4 additions and 2 deletions

View File

@ -127,6 +127,7 @@ namespace DCFApixels.DragonECS
if (type.TryGetAttributeInherited<MetaProxyAttribute>(out var proxyAtr, out var declaringAtrType))
{
#if REFLECTION_DISABLED
Type proxyType = proxyAtr.Type;
if (proxyType.ContainsGenericParameters && proxyType.IsNested)
{
@ -146,6 +147,7 @@ namespace DCFApixels.DragonECS
_isSelfProxy = declaringAtrType == type;
}
}
#endif
}
}
#endregion

View File

@ -2,7 +2,7 @@
#undef DEBUG
#endif
namespace DCFApixels.DragonECS.UncheckedCore
namespace DCFApixels.DragonECS.Core.Unchecked
{
public readonly struct EntitiesMatrix
{