Trying to decide between node editor extensions.
So I’ve decided to describe a goal i have, and see which extension gives the best method for me to achieve that goal.
I have the same component on multiple game objects
there is a public variable on these components that I would like to point to one variable
there is an editor for this component that doesn’t display the public variable
I want to edit a single variable that all the game objects point to
If you want to sync variables with a property of a monobehaviour, you can use the new script called BlackboardPropertyBinder.
So in your case, you can this script on all of the gameobject that you want to sync their property with a blackboard variable, assign the target blackboard on the ‘Blackboard’ field of that script and select the property and the variable that you want to syn.
Here is the documentation for this Property Binder script: http://nodecanvas.com/documentation/using-blackboard-binders-property-mecanim/
The script is working with Properties, not fields. Your scripts will show greyed out in the menu, if there are no public properties of the same type as the variable you want to bind/sync.