IF - GATE
R=TRIG? T : -
Allows value to pass through only if TRIG pulse.
if(pulse)
@/if(pulse)
IF - GATE
R=TRIG? T : -
Allows value to pass through only if TRIG pulse.
TRIGpulse
Tnumber
Rnumber
To use the node in your project you should have the koadrobot/logic library installed. Use the “File → Add Library” menu item in XOD IDE if you don’t have it yet. See Using libraries for more info.
C++ implementation
struct State {
};
{{ GENERATED_CODE }}
void evaluate(Context ctx) {
if (isInputDirty<input_TRIG>(ctx))
emitValue<output_R>(ctx, getValue<input_T>(ctx));
}