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 (type.TryGetAttributeInherited<MetaProxyAttribute>(out var proxyAtr, out var declaringAtrType))
{ {
#if REFLECTION_DISABLED
Type proxyType = proxyAtr.Type; Type proxyType = proxyAtr.Type;
if (proxyType.ContainsGenericParameters && proxyType.IsNested) if (proxyType.ContainsGenericParameters && proxyType.IsNested)
{ {
@ -146,9 +147,10 @@ namespace DCFApixels.DragonECS
_isSelfProxy = declaringAtrType == type; _isSelfProxy = declaringAtrType == type;
} }
} }
#endif
} }
} }
#endregion #endregion
#region Type #region Type
public Type Type public Type Type

View File

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