Version: 5.3 (switch to 5.4b)
ЯзыкEnglish
  • C#
  • JS

Язык программирования

Выберите подходящий для вас язык программирования. Все примеры кода будут представлены на выбранном языке.

Handles.DrawLines

Предложить изменения

Успех!

Благодарим вас за то, что вы помогаете нам улучшить качество документации по Unity. Однако, мы не можем принять любой перевод. Мы проверяем каждый предложенный вами вариант перевода и принимаем его только если он соответствует оригиналу.

Закрыть

Ошибка внесения изменений

По определённым причинам предложенный вами перевод не может быть принят. Пожалуйста <a>попробуйте снова</a> через пару минут. И выражаем вам свою благодарность за то, что вы уделяете время, чтобы улучшить документацию по Unity.

Закрыть

Отменить

Руководство
public static function DrawLines(lineSegments: Vector3[]): void;
public static void DrawLines(Vector3[] lineSegments);

Параметры

lineSegments A list of pairs of points that represent the start and end of line segments.

Описание

Рисует твердый очерченный прямоугольник в 3D пространстве.

"Draw multiple lines in sceneview.".

The following example uses DrawLines to draw a line between objects defined in a list. To use this example, save the following script into the Assets/Editor folder:


        
using UnityEngine;
using UnityEditor;

[CustomEditor( typeof( DrawLines ) )] public class DrawLinesEditor : Editor { void OnSceneGUI( ) { DrawLines t = target as DrawLines;

if( t == null || t.GameObjects == null ) return;

Vector3[] lineSegments = new Vector3[t.GameObjects.Length * 2]; int pointIndex = 0;

for( int i = 0; i < t.GameObjects.Length - 1; i++ ) { if( t.GameObjects[i] != null && t.GameObjects[i+1] != null ) { lineSegments[pointIndex++] = t.GameObjects[i].transform.position; lineSegments[pointIndex++] = t.GameObjects[i+1].transform.position; } }

Handles.DrawLines( lineSegments ); } }

...then attach this script to the anchor object which you would like to see lines eminate from. Drop GameObjects you would like lines drawing to into the array in the script's inspector, and adjust the gap between the dotted lines accordingly:


        
using UnityEngine;

[ExecuteInEditMode] public class DrawLines : MonoBehaviour { public GameObject[] GameObjects; }

public static function DrawLines(points: Vector3[], segmentIndices: int[]): void;
public static void DrawLines(Vector3[] points, int[] segmentIndices);

Параметры

points @param p1 Точка начала
segmentIndices A list of pairs of indices to the start and end points of the line segments.

Описание

Draw a list of indexed line segments.

The following example uses DrawDottedLines to draw a line between objects defined in a list. To use this example, save the following script into the Assets/Editor folder:


        
using UnityEngine;
using UnityEditor;

[CustomEditor( typeof( DrawLinesUsingPoints ) )] public class DrawLinesUsingPointsEditor : Editor { void OnSceneGUI( ) { DrawLinesUsingPoints t = target as DrawLinesUsingPoints;

if( t == null || t.GameObjects == null ) return;

Vector3[] points = new Vector3[t.GameObjects.Length]; int[] segmentIndices = new int[t.GameObjects.Length * 2]; int pointsIndex = 0;

for( int i = 0; i < t.GameObjects.Length; i++ ) { if( t.GameObjects[i] != null ) points[pointsIndex++] = t.GameObjects[i].transform.position; }

for( int i = 0; i < pointsIndex - 1; i++ ) { int segmentIndex = i * 2;

segmentIndices[segmentIndex] = i; segmentIndices[segmentIndex+1] = i+1; }

Handles.DrawLines(points, segmentIndices ); } }

...then attach this script to the anchor object which you would like to see lines eminate from. Drop GameObjects you would like lines drawing to into the array in the script's inspector, and adjust the gap between the dotted lines accordingly:


        
using UnityEngine;

[ExecuteInEditMode] public class DrawLinesUsingPoints : MonoBehaviour { public GameObject[] GameObjects; }