mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-11-12 16:45:55 +08:00
fix for support aot
This commit is contained in:
parent
08a19489e8
commit
ef242f4ecd
@ -134,7 +134,13 @@ namespace DCFApixels.DragonECS
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#region Constructors
|
#region Constructors
|
||||||
public RunHelper(EcsRunner<TProcess> runner) : this(runner, typeof(TProcess).ToMeta().Name) { }
|
public RunHelper(EcsRunner<TProcess> runner) : this(runner,
|
||||||
|
#if DEBUG && !DISABLE_DEBUG
|
||||||
|
typeof(TProcess).ToMeta().Name)
|
||||||
|
#else
|
||||||
|
string.Empty
|
||||||
|
#endif
|
||||||
|
{ }
|
||||||
public RunHelper(EcsRunner<TProcess> runner, string methodName)
|
public RunHelper(EcsRunner<TProcess> runner, string methodName)
|
||||||
{
|
{
|
||||||
_process = runner.Process;
|
_process = runner.Process;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user