Example #1
0
        ControlOutput OnEnter(Flow flow)
        {
            var sendto = flow.GetValue <string>(SendTo);
            var port   = (int)flow.GetValue <uint>(Port);
            var client = OscMaster.GetSharedClient(sendto, port);

            var address = flow.GetValue <string>(Address);

            client.Send(address);

            return(Exit);
        }