Use nameof(ReloadScene) instead of "ReloadScene"

Unity now support usage of nameof to get a string for the method name. This avoid making typos:

Invoke(nameof(ReloadScene), loadDelay);

1 Like

Privacy & Terms