Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Handles.DrawDottedLines

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function DrawDottedLines(lineSegments: Vector3[], screenSpaceSize: float): void;
public static void DrawDottedLines(Vector3[] lineSegments, float screenSpaceSize);

Parámetros

lineSegments A list of pairs of points that represent the start and end of line segments.
screenSpaceSize The size in pixels for the lengths of the line segments and the gaps between them.

Descripción

Draw a list of dotted line segments.

"Draw multiple dotted lines in sceneview."

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( DrawDottedConnectedLines ) )] public class DrawDottedConnectedLinesEditor : Editor { void OnSceneGUI( ) { DrawDottedConnectedLines t = target as DrawDottedConnectedLines;

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.DrawDottedLines( lineSegments, t.DashSize ); } }

...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 DrawDottedConnectedLines : MonoBehaviour { public GameObject[] GameObjects; public float DashSize = 4; }

public static function DrawDottedLines(points: Vector3[], segmentIndices: int[], screenSpaceSize: float): void;
public static void DrawDottedLines(Vector3[] points, int[] segmentIndices, float screenSpaceSize);

Parámetros

points A list of points.
segmentIndices A list of pairs of indices to the start and end points of the line segments.
screenSpaceSize The size in pixels for the lengths of the line segments and the gaps between them.

Descripción

Draw a list of indexed dotted 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( DrawDottedConnectedLinesUsingPoints ) )] public class DrawDottedConnectedLinesUsingPointsEditor : Editor { void OnSceneGUI( ) { DrawDottedConnectedLinesUsingPoints t = target as DrawDottedConnectedLinesUsingPoints;

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.DrawDottedLines(points, segmentIndices, t.DashSize ); } }

...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 DrawDottedConnectedLinesUsingPoints : MonoBehaviour { public GameObject[] GameObjects; public float DashSize = 4; }