On this page |
概要 ¶
Some common uses of the Null node:
-
If you point a path reference to a node in the middle of a network, you may later need to add more nodes below the referenced node to further process the geometry, and then you would have to update all the references to the original node to point to the new node that now outputs the “finished” geometry. Instead, it is good practice to insert a Null SOP below the node whose output geometry you want to grab, and then reference the Null SOP. That way you can add more nodes above the Null without having to change any references to the Null.
-
You can crate spare parameters on a Null and channel reference them from elsewhere in the network as a simple way to add some parameters to control things in the network.
Tip
Nullをネットワークに追加しても( Cache Input パラメータが有効でない限り)メモリ使用量は増えません。
パラメータ ¶
Copy Input
これを無効にすると、Null SOPはその入力をクックしますが、結果をコピーしません。 これは、ある時にノードを強制的にクックしたいけれど、その結果は不要な時に役に立ちます。 Merge SOPを使えば、たくさんの依存関係を単一入力にまとめることができます。
Cache Input
Null SOPは、入力をメモリ内にキャッシュ化します。 これによって、Null SOPの入力をUnloadすることができます。
See also |