Мои Уведомления
Привет, !
Мой Аккаунт Мои Финансы Мои Подписки Мои Настройки Выход
Руководство API скрипты
public static Color color;

Описание

Цвета ручек.

Пурпурный ползунок, указывающий на 0,0,0.
// Назовите этот скрипт "SliderHandleEditor" using UnityEngine; using System.Collections; using UnityEditor; [CustomEditor(typeof(SliderHandle))] public class SliderHandleEditor : Editor { // Simple script that creates a Slide Handle that // allows you to drag a 'look at' point along the X axis void OnSceneGUI() { SliderHandle t = (target as SliderHandle); // Set the colour of the next handle to be drawn: Handles.color = Color.magenta; EditorGUI.BeginChangeCheck(); Vector3 lookTarget = Handles.Slider(t.lookTarget, new Vector3(1, 0, 0), 2, Handles.ConeHandleCap, 0.1f); if (EditorGUI.EndChangeCheck()) { Undo.RecordObject(target, "Changed Slider Look Target"); t.lookTarget = lookTarget; t.Update(); } } }

И скрипт, прикрепленный к этому GameObject:

// Назовите этот скрипт "SliderHandle" using UnityEngine; using System.Collections; [ExecuteInEditMode] public class SliderHandle : MonoBehaviour { public Vector3 lookTarget = new Vector3(0, 0, 0); public void Update() { transform.LookAt(lookTarget); } }
Вы можете отблагодарить автора, за перевод документации на русский язык. ₽ Спасибо
API скрипты 2021.3