forked from Shardstone/trail-into-darkness
Some renaming and added more settings
This commit is contained in:
@@ -8,7 +8,7 @@ using UnityEditor;
|
||||
using UnityEngine;
|
||||
using Object = UnityEngine.Object;
|
||||
|
||||
namespace InspectorToolkit {
|
||||
namespace Jovian.InspectorTools {
|
||||
public static class AutoFindUtil {
|
||||
public static void Search(AutoFindAttribute autoFindAttribute, SerializedProperty property, bool autoAddIfMissing = false) {
|
||||
Type propertyType = EditorSerializationUtility.GetTypeFromProperty(property);
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
using UnityEditor;
|
||||
#endif
|
||||
|
||||
namespace InspectorToolkit {
|
||||
namespace Jovian.InspectorTools {
|
||||
public interface IActionableAttribute {
|
||||
#if UNITY_EDITOR
|
||||
void Trigger(SerializedProperty serializedProperty);
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
using UnityEditor;
|
||||
#endif
|
||||
|
||||
namespace InspectorToolkit {
|
||||
namespace Jovian.InspectorTools {
|
||||
public interface IPropertyCondition {
|
||||
#if UNITY_EDITOR
|
||||
bool DoesPropertyMeetCondition(SerializedProperty property, out string description);
|
||||
|
||||
@@ -2,7 +2,7 @@ using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace InspectorToolkit {
|
||||
namespace Jovian.InspectorTools {
|
||||
public enum PlayModeVisibility {
|
||||
Always,
|
||||
EditMode,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
using UnityEngine;
|
||||
|
||||
#if UNITY_EDITOR
|
||||
namespace InspectorToolkit.Internal {
|
||||
namespace Jovian.InspectorTools.Internal {
|
||||
|
||||
public interface IGUILayoutPropertyField {
|
||||
void GUILayoutPropertyField(SerializedProperty serializedProperty, params GUILayoutOption[] options);
|
||||
|
||||
@@ -3,7 +3,7 @@ using UnityEngine;
|
||||
|
||||
#if UNITY_EDITOR
|
||||
using UnityEditor;
|
||||
namespace InspectorToolkit.Internal {
|
||||
namespace Jovian.InspectorTools.Internal {
|
||||
|
||||
public static class RequiredUtil {
|
||||
private const float ICON_X_OFFSET = 15f;
|
||||
|
||||
Reference in New Issue
Block a user