Reply To: SEHException on UWP

Forums 💬 NodeCanvas ⚙️ Support SEHException on UWP Reply To: SEHException on UWP

#18252
dward
Participant

    The issue also occurs in GraphOwner.graphIsLocal.get but no longer throws an exception when

    var sc = GetComponents(typeof(IScriptableComponent)).Cast<IScriptableComponent>().ToList();

    is changed to

    var sc = GetComponents<IScriptableComponent>().ToList();

    When GatherDelegates() is commented out that out removes all occurrences at the moment.

    ReflectionTools doesn’t look to have been modified and is at version 2.5.6.

    Thanks.