VisualScriptingTool
Simplifies some procedural stuff, useful for Technical artists.
Install / Use
/learn @OVPavlov/VisualScriptingToolREADME
VisualScriptingTool
Simplifies some procedural stuff, useful for Technical artists.
- procedural animation
- procedural generation
- partial customization of your pipelines
Easy to add properties in the inspector of the graph

Nodes adapt to the type of your input

Easy to add graph in your code in order to give designers more control over some stages of execution
public NodeDataInput InspectorValues; // if you want user to add properties in the inspector (optional)
public NodeData Data;
Node _inputNode;
Node _outputNode;
void Initialize()
{
if (Data == null) return;
// specify Nodes that must be input and output of your graph (optional)
Data.BeginInputInit();
_inputNode = Data.CteateInput(ValueType.Vector2, "Position");
_outputNode = Data.CteateOutput(ValueType.Color, "Color");
Data.EndInputInit();
// if you want user to add properties in the inspector (optional)
if (InspectorValues == null) InspectorValues = new NodeDataInput();
InspectorValues.InitializeFrom(Data);
}
void Update(Vector2 position, out Color color)
{
InspectorValues.SetTo(Data); // reload user created properties from the inspector (optional)
Data.SetVector2(_inputNode, position);
Data.Process();
color = Data.GetColor(_outputNode);
}
Examples
procedural mesh.mp4<br> tiled fire texture.mp4<br> stardome.mp4
Related Skills
node-connect
351.4kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
110.7kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
351.4kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
351.4kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
