您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
23 行
840 B
23 行
840 B
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
namespace Cinemachine.Editor
|
|
{
|
|
[CustomEditor(typeof(CinemachineHardLockToTarget))]
|
|
public sealed class CinemachineHardLockToTargetEditor : BaseEditor<CinemachineHardLockToTarget>
|
|
{
|
|
public override void OnInspectorGUI()
|
|
{
|
|
BeginInspector();
|
|
if (Target.FollowTarget == null)
|
|
EditorGUILayout.HelpBox(
|
|
"Hard Lock requires a Follow Target. Change Body to Do Nothing if you don't want a Follow target.",
|
|
MessageType.Warning);
|
|
EditorGUI.BeginChangeCheck();
|
|
GUI.enabled = false;
|
|
EditorGUILayout.LabelField(" ", "Hard Lock has no settings", EditorStyles.miniLabel);
|
|
GUI.enabled = true;
|
|
DrawRemainingPropertiesInInspector();
|
|
}
|
|
}
|
|
}
|