miroiu / nodify

Highly performant and modular controls for node-based editors designed for data-binding and MVVM.
https://miroiu.github.io/nodify
MIT License
1.38k stars 224 forks source link

[Question] Is it possible t have multiple tagets for one out connector? #129

Closed AndreasGeorg closed 3 months ago

AndreasGeorg commented 3 months ago

At first thanks for your great work. If try to write an application to visiualize some automation blocks. There it is common to connect a out parameter to several input parameters. Thate look like this:

block1.out_1 --> block2.in_1
block1.out_1 --> block2.in_2
block1.out_1 --> block2.in_3
block2.in_1   --> block3.in_1
block2.out_1 --> block3.in_2
miroiu commented 3 months ago

Hi, you can have as many targets as you want. The library only provides the UI, not the business rules. I suggest you try out the example applications because there are examples of how you can set up business rules.

image

AndreasGeorg commented 3 months ago

Thank you, sorry I haven't seen that before.