-
Notifications
You must be signed in to change notification settings - Fork 83
SDPPP rules to make nodes become APP like UI.
By default, there are many nodes that are built-in supported by SDPPP. The will shown in the sidebar and SDPPP popup.
- PrimitiveNodes
- CheckpointLoaderSimple
- LoadImage
- LoadImageAsMask
- rgthree-comfy nodes
- GetDocumentNode (for photoshop)
- GetLayerByID (for photoshop)
These nodes are defined in
javascript/sdppp_custom.js
.
If you want to control a node that is not built-in supported by SDPPP. You can add the '#' character before the node's name.
In contrast, you can force hide a node by adding the '.' character before the node's name.
The sorting is based on the node's name. Following the alphabet order. Just like the files in your computer.
The most classic case is when you have nodes named 9. foo
and 10. bar
, the 10. bar
will be sorted before 9. foo
.
So you had better name the 9. foo
as 09. foo
.
Currently, all widgets will be shown when a node is shown. The only way to define it, is to define a rule in javascript/sdppp_custom.js
. It will making the nodes become built-in supported nodes.
More way is in consideration. You can make suggestions to me.
You can just follow the comments and examples in the file.