Skip to content

Plugins: 05 Get Result Data

Kaspar Schmid edited this page Apr 16, 2015 · 2 revisions

getResultData() is called when a following process or the GUI needs an updated result of a process item.

return _result;

When offering multiple outputs, you need to return the corresponding result for a given index.

if(index == 0)
    return _result;
else if(index == 1)
    return _kernel;

Clone this wiki locally