Beispiel #1
0
        protected override void SolveInstance(IGH_DataAccess DA)
        {
            int DI = 0;

            if (!DA.GetData(0, ref DI))
            {
                return;
            }

            var command = new Robots.Commands.WaitDI(DI);

            DA.SetData(0, new GH_Command(command));
        }
Beispiel #2
0
        protected override void SolveInstance(IGH_DataAccess DA)
        {
            int DI = 0;

            if (!DA.GetData(0, ref DI)) { return; }

            var command = new Robots.Commands.WaitDI(DI);
            DA.SetData(0, new GH_Command(command));
        }