no overload for 'useItemOnSceneLoad' matches delegate 'UnityAction<Scene, LoadSceneMode>' code example
Example: no overload for 'useItemOnSceneLoad' matches delegate 'UnityAction'
//https://answers.unity.com/questions/1279397/onscenewasloaded-deprecated-cannot-find-work-aroun.html
//The two problems you have is sceneLoaded is a delegate with two parameters,
//where you provide none with your myDelegateEvent() method. you need to extend your myDelegateEvent
//to match the parameters like:
void myDelegate(Scene scene, LoadSceneMode mode){ }
//then use:
SceneManager.sceneLoaded += myDelegeteEvent;
//to add an event to the delegete