What is Node Wirelessization?

The biggest feature of node-based tools is that you can perform complex processing just by connecting each function with lines. On the other hand, there is also a problem that the screen becomes cluttered (spaghetti-like) and it becomes completely unclear what is being done as the number of nodes and lines increases.

In such a situation, it is natural that the idea "Why don't we fly data wirelessly?" comes out.


Custom Node

There are several custom nodes that realize wirelessization. chrisgoringe/cg-use-everywhere is also famous, but recently the set of KJNodes, which is simpler and easier to handle, is often used.


Set & Get Node

Usage is very simple.

Set_Get.json
    1. Set Node (Sender):
    • Input data and set any name (ID) to Constant.
    1. Get Node (Receiver):
    • If you set the same name as the sender to Constant, you can receive data even at a distant place.

Convenient but use with caution

Set_Get_image2image.json

As mentioned in Recommendation for Readable Nodes, the biggest advantage of node tools is that "you can grasp the flow of data just by looking at the connected lines". If you wirelessly unnecessarily, it becomes very difficult to trace the flow of processing, asking "Where did this image data fly from?".

If the same variable appears over and over again everywhere in one workflow, wirelessization may be convenient, but in the first place, such a large workflow might should be split into smaller pieces (;・∀・)