Hey guys.   I was wondering which one is worse performance-wise:
1. Creating one EH and making it not work when not needed using "if (conditionNotMet) exitWith {};" 2. Adding the EH when needed and deleting it when it's done.

Particularly I'm interested in two types of Event Handlers:
1. KeyDown, added directly to display 46 like this: (findDisplay 46) displayAddEventHandler ["KeyDown", "_this call someCode"];
2. onEachFrame, created using BIS_fnc_addStackedEventHandler.   Any help would be appreciated.