Unity调试画线

Unity引擎 · 01-10 · 98 人浏览

调试画线
参1 起点位置 参2 终点位置 参3 颜色
Debug.DrawLine(this.transform.position,this.transform.position+this.transform.forward,Color.red);
参1 起点 参2 朝向,方向 参3 颜色
Debug.DrawRay(this.transform.position+this.transform.right*2,this.transform.forward,Color.yellow);
Debug.DrawRay(this.transform.position, target.position-this.transform.position, Color.black);

Theme Jasmine by Kent Liao