Reply To: Can't find SimplexNode like '+', '*' or '/' in Node Browser

FlowCanvas Forums Support Can't find SimplexNode like '+', '*' or '/' in Node Browser Reply To: Can't find SimplexNode like '+', '*' or '/' in Node Browser

#1588
ellongrey
Participant

I think the strongest point over other solutions is that FlowCanvas includes full of its source code!
Very happy to skim over code and figured out why ‘velocity’ search does not show Rigidbody’s one and how to fix it:

In CompleteContextMenu.cs #361: Change indexer parameter ‘node.name’ to ‘node.fullPath’.
The ‘velocity’ nodes of Rigidbody were overwritten with another nodes of same name because they have same name.
(Of course I’m not sure if that’s the legitimate solution tho 🙂

Thank you.