Skip to content

Instantly share code, notes, and snippets.

@ManickYoj
Created January 2, 2022 22:28
Show Gist options
  • Save ManickYoj/5480c520b21927363136e57905d06414 to your computer and use it in GitHub Desktop.
Save ManickYoj/5480c520b21927363136e57905d06414 to your computer and use it in GitHub Desktop.
public class Receiver : MonoBehaviour {
public Camera receiverCamera;
public GameObject[] listeners;
public void SendCommand(string cmd, object val = null) {
foreach (GameObject listener in listeners) {
listener.SendMessage(cmd, val, SendMessageOptions.DontRequireReceiver);
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment