- Bug Fix: fix namespace and compilation error in
Manager
.
- New Feature: added static helper class,
Manager
: handles starting and stopping coroutines for any non-MonoBehaviour
scripts. Also has events forUpdate
,LateUpdate
, andFixedUpdate
.
- New Enhancement: allowing one to edit
SettingsEditor
by overriding theUxmlPath
property.
- New Feature: added abstract class,
SettingsEditor
. This editor simply displays one button, prompting the user to open the Project Settings window instead. - New Feature: added abstract class,
SettingsPropertyDrawer
ThisPropertyDrawer
automatically callsReset(SerializedProperty)
as soon as the user sees the serialized variable in the inspector. Provides an opportunity for the developer to replace the variable with an existing asset in the project. - Bug Fix: fixed
ComponentSingleton
to actually work on runtime.
- New Feature: added
ComponentSingleton
, which creates a singleton instance of a component!
- Marking this package as stable, given it's relatively small footprint and unlikeliness to cause problems.
- New Enhancement: upgrading the assembly definitions and package files.
- New Enhancement: added
SettingsHelpers
- Updating version of each dependency libraries.
- Updating
Singleton
to compile with latest dependency changes.
- Initial release
- New Feature: added
Singleton
- New Feature: added
ISingletonScript