GenericScriptableArchitecture icon indicating copy to clipboard operation
GenericScriptableArchitecture copied to clipboard

ScriptableEventListener disabled in Awake still fires responses

Open CharlieHess opened this issue 1 year ago • 0 comments

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;
}

CharlieHess avatar Mar 30 '23 00:03 CharlieHess