unity实用技能Unity画一条带箭头的线

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unity实用技能Unity画一条带箭头的线相关的知识,希望对你有一定的参考价值。

提供函数方便使用

    private void DrawArrow(Vector2 from, Vector2 to, Color color)
    {
        Handles.BeginGUI();
        Handles.color = color;
        Handles.DrawAAPolyLine(3, from, to);
        Vector2 v0 = from - to;
        v0 *= 10 / v0.magnitude;
        Vector2 v1 = new Vector2(v0.x * 0.866f - v0.y * 0.5f, v0.x * 0.5f + v0.y * 0.866f);
        Vector2 v2 = new Vector2(v0.x * 0.866f + v0.y * 0.5f, v0.x * -0.5f + v0.y * 0.866f); ;
        Handles.DrawAAPolyLine(3, to + v1, to, to + v2);
        Handles.EndGUI();
    }

以上是关于unity实用技能Unity画一条带箭头的线的主要内容,如果未能解决你的问题,请参考以下文章

如何用svg在网页中画一条带箭头的连接线

如何在 Flutter 中画一条带尖三角形的线?

100个 Unity实用技能 | Unity 在代码中 动态改变RectTransform位置及宽高 的方法整理

小松教你手游开发unity实用技能unity ios快捷打包

小松教你手游开发unity实用技能unity性能问题查找方法

100个 Unity实用技能 | Unity自定义脚本的初始模版