mirror of
https://github.com/DCFApixels/DragonECS-AutoInjections.git
synced 2025-09-17 20:34:34 +08:00
Compare commits
3 Commits
6a3b78026d
...
f23f9692a2
Author | SHA1 | Date | |
---|---|---|---|
![]() |
f23f9692a2 | ||
![]() |
99f6c30e2e | ||
![]() |
4b4fb185eb |
@ -1,4 +1,7 @@
|
||||
using DCFApixels.DragonECS.AutoInjections.Internal;
|
||||
#if DISABLE_DEBUG
|
||||
#undef DEBUG
|
||||
#endif
|
||||
using DCFApixels.DragonECS.AutoInjections.Internal;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
@ -1,4 +1,7 @@
|
||||
using DCFApixels.DragonECS.PoolsCore;
|
||||
#if DISABLE_DEBUG
|
||||
#undef DEBUG
|
||||
#endif
|
||||
using DCFApixels.DragonECS.PoolsCore;
|
||||
using System;
|
||||
using System.Linq;
|
||||
|
||||
|
@ -1,4 +1,7 @@
|
||||
using System;
|
||||
#if DISABLE_DEBUG
|
||||
#undef DEBUG
|
||||
#endif
|
||||
using System;
|
||||
|
||||
namespace DCFApixels.DragonECS
|
||||
{
|
||||
|
@ -1,3 +1,6 @@
|
||||
#if DISABLE_DEBUG
|
||||
#undef DEBUG
|
||||
#endif
|
||||
using DCFApixels.DragonECS.AutoInjections;
|
||||
using DCFApixels.DragonECS.AutoInjections.Internal;
|
||||
using System;
|
||||
@ -63,7 +66,7 @@ namespace DCFApixels.DragonECS
|
||||
{
|
||||
return false;
|
||||
}
|
||||
#if (DEBUG && !DISABLE_DEBUG) || ENABLE_DRAGONECS_ASSERT_CHEKS
|
||||
#if DEBUG || ENABLE_DRAGONECS_ASSERT_CHEKS
|
||||
if (!isAgressiveInjection && o.CanWrite == false) { Throw.PropertyIsCantWrite(o); }
|
||||
#endif
|
||||
return o.CanWrite == false;
|
||||
@ -78,7 +81,7 @@ namespace DCFApixels.DragonECS
|
||||
return false;
|
||||
}
|
||||
var parameters = o.GetParameters();
|
||||
#if (DEBUG && !DISABLE_DEBUG) || ENABLE_DRAGONECS_ASSERT_CHEKS
|
||||
#if DEBUG || ENABLE_DRAGONECS_ASSERT_CHEKS
|
||||
if (!isAgressiveInjection)
|
||||
{
|
||||
if (o.IsGenericMethod) { Throw.MethodIsGeneric(o); }
|
||||
@ -210,8 +213,10 @@ namespace DCFApixels.DragonECS
|
||||
|
||||
static AutoInjectSystem()
|
||||
{
|
||||
EcsAspect.OnInit -= EcsAspect_OnInit;
|
||||
EcsAspect.OnInit += EcsAspect_OnInit;
|
||||
EcsAspect.OnAfterInit += EcsAspect_OnBuild; ;
|
||||
EcsAspect.OnAfterInit -= EcsAspect_OnBuild;
|
||||
EcsAspect.OnAfterInit += EcsAspect_OnBuild;
|
||||
}
|
||||
|
||||
private static void EcsAspect_OnInit(object aspect, EcsAspect.Builder builder)
|
||||
|
@ -1,4 +1,8 @@
|
||||
namespace DCFApixels.DragonECS
|
||||
#if DISABLE_DEBUG
|
||||
#undef DEBUG
|
||||
#endif
|
||||
|
||||
namespace DCFApixels.DragonECS
|
||||
{
|
||||
public static class AutoInjectSystemExtensions
|
||||
{
|
||||
|
@ -1,4 +1,8 @@
|
||||
using System;
|
||||
#if DISABLE_DEBUG
|
||||
#undef DEBUG
|
||||
#endif
|
||||
using System;
|
||||
|
||||
[AttributeUsage(AttributeTargets.Interface, Inherited = false, AllowMultiple = false)]
|
||||
public sealed class BindWithRunnerAttribute : Attribute
|
||||
{
|
||||
|
@ -1,4 +1,7 @@
|
||||
using DCFApixels.DragonECS.AutoInjections.Internal;
|
||||
#if DISABLE_DEBUG
|
||||
#undef DEBUG
|
||||
#endif
|
||||
using DCFApixels.DragonECS.AutoInjections.Internal;
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
|
@ -1,4 +1,7 @@
|
||||
using System;
|
||||
#if DISABLE_DEBUG
|
||||
#undef DEBUG
|
||||
#endif
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
namespace DCFApixels.DragonECS
|
||||
|
@ -1,4 +1,7 @@
|
||||
using System;
|
||||
#if DISABLE_DEBUG
|
||||
#undef DEBUG
|
||||
#endif
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
|
@ -1,4 +1,7 @@
|
||||
using System;
|
||||
#if DISABLE_DEBUG
|
||||
#undef DEBUG
|
||||
#endif
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user