Exemplo n.º 1
0
        protected override void SolveInstance(IGH_DataAccess da)
        {
            double time = 0;

            if (!da.GetData(0, ref time))
            {
                return;
            }

            var command = new Robots.Commands.Wait(time);

            da.SetData(0, new GH_Command(command));
        }
Exemplo n.º 2
0
        protected override void SolveInstance(IGH_DataAccess da)
        {
            double time = 0;

            if (!da.GetData(0, ref time))  return;

            var command = new Robots.Commands.Wait(time);
            da.SetData(0, new GH_Command(command));
        }