Unity开源工具开发笔记-使用GraphView改进PlayableGraphVisualizer

Unity开源工具开发笔记-使用GraphView改进PlayableGraphVisualizer
PlayableGraphVisualizer可以帮助我们可视化Runtime时的Playable运行状态,对开发者了解Playable的结构有非常大的帮助。
缺点:
有个缺点是多个output时,graph无法显示全

https://github.com/Unity-Technologies/graph-visualizer/issues/9

解决方案:
将Visualizer的功能移植到GraphView上
Git链接:https://github.com/terrynoya/YJZPlayableGraphView
目前功能仍在开发中
unity新的UIElement中的GraphView组件,提供了节点编辑和预览的全部功能,同时还提供缩放,拖动功能,运行时性能比IMGUI更好。
下面是图例:

原文地址:https://www.cnblogs.com/terrynoya/p/14985005.html