Overview
Extracts one subpath from a multipath. It becomes a branch point when you draw several parts in one path editor and want to process each part differently, such as with different line widths, colors, or effects.
Usage tips
- A convenient setup is "draw in one editor, separate for processing": draw the
outline, pattern, and ornaments as separate subpaths in Multi Path, extract
them with Path Split ÃN, and give each
path_strokedifferent settings. - Recombine them afterward with
path_combinewhen only the processing differs but you want to draw them together. - The
countoutput gives the total subpath count, which also helps catch an incorrect index.
Related nodes
path_combineâ reverse direction (merge)path_stroke/path_fillâ draw the extracted pathpath_reverseâ reverse one subpath (scope=SubPath)list_getâ a similar concept for lists
Technical details
- Extracts the subpath at
indexfrom the input path'ssub_pathsarray and outputs it as a standalone path. - An out-of-range index outputs an empty path.
- The
countoutput provides the total subpath count (useful for loops and similar processing). - The
closedstate is preserved as-is.
Examples
To process multiple subpaths drawn in Multi Path differently:
- Connect the Multi Path output to Path Split.
- Select the target subpath with
index. - Connect the output path to Path Array, Path Stroke, Path Fill, or another node.
- To process another subpath, add another Path Split and specify a different index.