Code
Unity: How to Send Message by name, Dynamically
Unity: How to Send Message by name, Dynamically
SendMessage(nameof(IInterface.Function), parameter, SendMessageOptions.DontRequireReceiver);
Using the nameof function will allow the message name to be updated by the IDE
SendMessageOptions.DontRequireReceiver is an optional parameter to prevent errors from occurring if there is no receiver