void SendModValue()
 {
     if (IPSetter.IsConnected())
     {
         sender.Send(MapValueToCurve(modValue, false));
     }
 }
    void Start()
    {
        util      = FindObjectOfType <Utilities>();
        uiManager = FindObjectOfType <UIManager>();
        ipSetter  = FindObjectOfType <IPSetter>();

        //load profile file names
        LoadProfileNames();

        //populate ui with profile names to allow for saving
        PopulateProfileSelectionMenu();
    }
 void InvalidClient()
 {
     IPSetter.InvalidClient();
 }
 void SetConnected()
 {
     IPSetter.SetConnected();
 }