Send Float

Read with AI
All docs in one file (llms-full.txt)
SendFloat #Signal #Node
Send Float

Feeds the value at In every frame into the channel named in the Channel field. ReceiveFloat picks it up. Since no edge is created in the graph, you avoid routing wires to distant nodes, and it is not subject to cycle detection (= you can build feedback).

  • Channel names are compared with leading and trailing whitespace removed. When the field is empty, nothing is sent
  • Sending happens in LateUpdate and receiving in Update, so the Receive side reads the previous frame’s value (one frame of delay)

If several Send Float nodes use the same channel name, a warning appears and the one that registered later wins. The losing Send is ignored every frame.

Video

Input ports

Port IDType
Infloat

Output ports

None

Scriptable members

PathType
inputfloat
currentChannelstring

Synapse Apps (scripting)

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

Pages linking here