Simon Schmid
Simon Schmid
Yes, you are right. That's a simple solution. But since it is possible to display and edit entries with the same title in the GUI, I thought it would be...
There's a search field which supports fuzzy search, e.g to show Asset, Color, ViewController you can write "as co vi". This will filter all matching components. Based on my current...
Maybe sth like a `IComponentsGroupDrawer` ```csharp public class ViewDrawer : IComponentsDrawer { public string title { get { return "View"; } } public Color color { get { return Color.red;...
The EntityDrawer could draw all component groups based on prio first and then all remaining components as usual
Or maybe sth like this instead ```csharp [DrawInGroup("View")] public sealed class AssetComponent : IComponent { public string value; } // In ViewGroupDrawer.cs public class ViewGroupDrawer : IComponentsDrawer { public string...
oooor maybe not have an `IComponentsDrawer` at all and [DrawInGroup("View")] dynamically creates Groups, because we have the title already and it gets a random (but deterministic) color assigned. Ordered alphabetically
An integrated logging system could also make sense to use it as a foundation for visualization tools. A consistent logging output across projects could enable visualizing behaviour over time (e.g...
@kicholen I agree. It should be very easy to deactivate the logging. In the future I can imagine that we can build all kinds of visualization tools etc based on...
Yes, I don't plan to add a logging framework (I already did one, it's open source [NLog](https://github.com/sschmid/NLog)) I plan to provide sth to plug into with any logging tool you...
@mzaks what's the state with this?