Entitas-csharp: Namespaces are not ignored in Entities objects names

Created on 23 May 2017  路  2Comments  路  Source: sschmid/Entitas-CSharp

Using Entitas 0.42.3

Not a big deal, but sometimes is faster to look at the entity names for current components.
And since the namespace is not ignored, the name of the entity becomes long.

Example:

Entity_0(*1)(MyNamespace.MyFirstComponent, MyNamespace.MySecondComponent)

enhancement

Most helpful comment

Hey, agree. Totally makes sense to skip the namespace for components. Btw, did you know that you can override ToString in components to get custom output like
Entity_0(*1)(Health(100), Position(1,2,3)

All 2 comments

Hey, agree. Totally makes sense to skip the namespace for components. Btw, did you know that you can override ToString in components to get custom output like
Entity_0(*1)(Health(100), Position(1,2,3)

Even better :) thanks for tip

Was this page helpful?
0 / 5 - 0 ratings