Browse Source

improve error report

tags/Rel1
sebas77 7 years ago
parent
commit
2d105f9ccb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ECS/EntityDescriptor.cs

+ 1
- 1
ECS/EntityDescriptor.cs View File

@@ -34,7 +34,7 @@ namespace Svelto.ECS
var implementor = implementors[index];
if (implementor == null)
Utility.Console.LogWarning(
"Null implementor, are you using a wild GetComponents<Monobehaviour> to fetch it?");
"Null implementor, are you using a wild GetComponents<Monobehaviour> to fetch it? ").FastConcat(ToString()));
else
{
if (implementor is IRemoveEntityComponent)


Loading…
Cancel
Save