v1.1.0
1.1.0 (2021-04-08)
Features
- Event: allow tracing of GameObject in UnityEvent (4a03c25)
Previously the tracing was only done on components and a GameObejct is not a component but both Component and GameObject both extend Object so now the tracing is done on Object to allow to trace events from a Component being used in a Unity Event or whether the GameObject itself is being modified in a unity event.
- Output: add basic console logging component (66d5e70)
The ConsoleLogger component has a collection of methods for logging common data types to the Unity console window. It will also take an object type and call the
ToString()method on any object that can print out its own contents. - Prefabs: add basic scene console (d9c0808)
A scene console prefab has been created that provides a scene GameObject canvas that can display the console logs from the Unity console in various log formats. It also supports basic collapse functionality.