Browse Source

fix asm def

tags/Rel25a
sebas77 6 years ago
parent
commit
9f256ae1c1
4 changed files with 16 additions and 4 deletions
  1. +1
    -0
      DBC.cs
  2. +0
    -1
      Svelto.ECS/EntityDescriptor.cs
  3. +2
    -3
      Svelto.ECS/EntityViewUtility.cs
  4. +13
    -0
      Svelto.ECS/Profiler/Editor/Svelto.ECS.Profiler.asmdef

+ 1
- 0
DBC.cs View File

@@ -1,4 +1,5 @@
using System;
using System.Diagnostics;

namespace DBC.ECS
{


+ 0
- 1
Svelto.ECS/EntityDescriptor.cs View File

@@ -1,5 +1,4 @@
using System;
using DBC;
using Svelto.DataStructures;

namespace Svelto.ECS


+ 2
- 3
Svelto.ECS/EntityViewUtility.cs View File

@@ -3,7 +3,6 @@ using System.Collections.Generic;
using Svelto.DataStructures;
using Svelto.ECS;
using Svelto.Utilities;
using Console = Utility.Console;

static class EntityViewUtility
{
@@ -53,7 +52,7 @@ static class EntityViewUtility
#if DEBUG && !PROFILER
else
{
Console.LogError(NULL_IMPLEMENTOR_ERROR.FastConcat("Type ", entityDescriptorName, " entityView ", entityViewBuilder.GetEntityType().ToString()));
Utility.Console.LogError(NULL_IMPLEMENTOR_ERROR.FastConcat("Type ", entityDescriptorName, " entityView ", entityViewBuilder.GetEntityType().ToString()));
}
#endif
}
@@ -79,7 +78,7 @@ static class EntityViewUtility
}
#if DEBUG && !PROFILER
if (component.numberOfImplementations > 1)
Console.LogError(DUPLICATE_IMPLEMENTOR_ERROR.FastConcat(
Utility.Console.LogError(DUPLICATE_IMPLEMENTOR_ERROR.FastConcat(
"Component Type: ", fieldType.Name,
" implementor: ",
component.implementorType.ToString()) +


+ 13
- 0
Svelto.ECS/Profiler/Editor/Svelto.ECS.Profiler.asmdef View File

@@ -0,0 +1,13 @@
{
"name": "Svelto.ECS.Profiler",
"references": [
"Svelto.ECS",
"Svelto.Common"
],
"optionalUnityReferences": [],
"includePlatforms": [
"Editor"
],
"excludePlatforms": [],
"allowUnsafeCode": false
}

Loading…
Cancel
Save