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