Need to full qualify?

amac

New member
Some nodes have a namespace, should I add those to nodes so I can add tooltips back in? Unity's UnityEngine.Tooltip doesn't work but the alternative is quite long. [BehaviorDesigner.Runtime.Tasks.Tooltip

1660233831556.png
 

Attachments

  • 1660233811950.png
    1660233811950.png
    665.1 KB · Views: 1
You can use the fully qualified name or:
Code:
using Tooltip = BehaviorDesigner.Runtime.Tasks.Tooltip;
 
Top