This commit is contained in:
Syntriax 2023-03-23 22:01:47 +03:00
commit 7a08d843a8
2 changed files with 8 additions and 2 deletions

View File

@ -25,6 +25,12 @@ namespace Syntriax.Modules.State
=> OnEnabledChanged += (state) => enabled = state;
protected void OnEnable() => IsEnabled = true;
protected void OnDisable() => IsEnabled = false;
protected void OnDisable()
{
IsEnabled = false;
if (!gameObject.activeInHierarchy) // Just so we can get OnEnable called when the object is back active again in the hierarchy
this.enabled = true;
}
}
}

View File

@ -1,6 +1,6 @@
{
"name": "com.syntriax.state",
"version": "0.2.0",
"version": "0.2.1",
"displayName": "State Module",
"unity": "2019.1",
"documentationUrl": "https://git.syntriax.com/Syntriax/State.git",