Skip to content
Yannic Hock edited this page Oct 11, 2021 · 6 revisions

General

Halts the program for the given amount of milliseconds. Usually used as an interupt.

Further explanation on this Leaf can be found in the Ajan-Service Documentation.

UI

Contains Leaf Base UI

Additional Wait UI
  • Milliseconds - Time im Milliseconds the program should halt.

Node Definition

:Wait nd:class nd:Leaf;
	nd:name "Wait";
    nd:labelType nd:Dynamic;
    rdfs:label "DefaultWait";
    nd:type bt:Wait;
    nd:style [
        a nd:StyleDef;
        nd:color "#eea5ff";
        nd:shape nd:Roundrectangle;
        nd:padding "600%";
        nd:paddingTo "width";
        nd:icon "wait.png";
    ];
	nd:parameters ([
            a nd:Parameter;
            nd:mapsTo bt:milliseconds;
            nd:title "Milliseconds";
            nd:input xsd:int ;
            nd:default 0;
        ]
    )
.
Clone this wiki locally