vvvv-troubleshooting
Installation
SKILL.md
vvvv gamma Troubleshooting
C# / ProcessNode Issues
"Node" Suffix in Class Name
Symptom: Node works but has ugly name in vvvv. Fix: Remove "Node" suffix — vvvv convention forbids it.
// WRONG
[ProcessNode]
public class SteeringBehaviorNode { }
// CORRECT
[ProcessNode]
public class SteeringBehavior { }