controlID | @param position Позиция маркера. |
position | @param position Позиция маркера. |
rotation | @param rotation Вращение маркера. |
size | @param size Размер маркера. |
Рисует точку перед камерой. Передает ее в обрабатываемые функции.
Важно: Используйте HandleUtility.GetHandleSize если вам нужны маркеры постоянного размера.
Dot Cap in the Scene view.
To use this example, save this script into the Assets/Editor folder:
using UnityEngine; using UnityEditor;
[CustomEditor(typeof(DummyDotCap))] public class DotCapEditor : Editor { public float dotSize = 1;
void OnSceneGUI() { DummyDotCap t = target as DummyDotCap;
Handles.color = Color.red; Handles.DotCap(0, t.transform.position + new Vector3(5, 0, 0), t.transform.rotation, dotSize);
Handles.color = Color.green; Handles.DotCap(0, t.transform.position + new Vector3(0, 5, 0), t.transform.rotation, dotSize);
Handles.color = Color.blue; Handles.DotCap(0, t.transform.position + new Vector3(0, 0, 5), t.transform.rotation, dotSize); } }
И скрипт, прикрепленный к данному маркеру:
using UnityEngine;
[ExecuteInEditMode] public class DummyDotCap : MonoBehaviour { public void Start() { Debug.Log("I have DotCap Handles attached to this transform!"); } }