hello @Elias! (i guess)
using the [ProcessNode] attribute property getters are not getting picked up for me if they are written as get set combo. (preview ~6.0-0260)
guess it’s intended to work/a bug. didn’t see any code comment otherwise
like this:
[ProcessNode]
public class Process
{
private int _counter;
public int Counter
{
// doesn't show up as pin
get { return _counter; }
// shows up as pin
set { _counter = value; }
}
public int GetterOnly
{
// shows up as pin
get { return _counter; }
}
}