Field Visualize

Read with AI
All docs in one file (llms-full.txt)
FieldVisualize #Field #Node
Field Visualize

A node that converts an invisible flow field into an image so you can check it. It assigns the angle of the vector atan2(y, x) to hue and its length saturate(|v| × Gain) to brightness (saturation is always 1). It works for debugging while you are building a field, and can also be used as an image in its own right.

  • Gain — the brightness scale. Clamped to 0-10, default 2 (Gain input / gainInput / currentGain). Raise it when the field is weak and looks pitch black

The output is a RenderTexture, and its resolution is the same as the input field (which in most cases means 1/4 to 1/8 of the global resolution). A preview is shown in the node UI.

If the input is disconnected, the output is cleared to black.

Input ports

Port IDType
FlowFlowFieldInput
Gainfloat

Output ports

Port IDType
OutRenderTexture

Scriptable members

PathType
gainInputfloat
currentGainfloat

Synapse Apps (scripting)

await synapse.modules.create({ type: "FieldVisualize" })

Pages linking here