GenericScriptableArchitecture
GenericScriptableArchitecture copied to clipboard
ScriptableEventListener disabled in Awake still fires responses
The following code, which you'd expect to prevent the listener from firing events, has no effect.
[SerializeField]
private ScriptableEventListener listener;
private void Awake() {
listener.enabled = false;
}