Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseDraw a line from p1 to p2.
Draw Line in the Scene View.
// Draw lines to the connected game objects that a script has. // If the target object doesnt have any game objects attached // then it draws a line from the object to (0, 0, 0).
using UnityEditor; using UnityEngine;
[CustomEditor(typeof(ConnectedObjectsExampleScript))] class ConnectLineHandleExampleScript : Editor { void OnSceneGUI() { ConnectedObjectsExampleScript connectedObjects = target as ConnectedObjectsExampleScript; if (connectedObjects.objs == null) return;
Vector3 center = connectedObjects.transform.position; for (int i = 0; i < connectedObjects.objs.Length; i++) { GameObject connectedObject = connectedObjects.objs[i]; if (connectedObject) { Handles.DrawLine(center, connectedObject.transform.position); } else { Handles.DrawLine(center, Vector3.zero); } } } }
And the script attached to this Handle:
using UnityEngine;
public class ConnectedObjectsExampleScript : MonoBehaviour { public GameObject[] objs = null; }