添加缺失插件
This commit is contained in:
10
Assets/Asset Usage Finder/Editor/Styles/ContentStylePair.cs
Normal file
10
Assets/Asset Usage Finder/Editor/Styles/ContentStylePair.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace AssetUsageFinder.Styles {
|
||||
[Serializable]
|
||||
class ContentStylePair {
|
||||
public GUIContent Content = new GUIContent();
|
||||
public GUIStyle Style = new GUIStyle();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d89a773ebe3631a45968846ae15ffe67
|
||||
timeCreated: 1467636613
|
||||
licenseType: Store
|
||||
MonoImporter:
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
26
Assets/Asset Usage Finder/Editor/Styles/WindowStyleAsset.cs
Normal file
26
Assets/Asset Usage Finder/Editor/Styles/WindowStyleAsset.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using UnityEditor;
|
||||
using UnityEditorInternal;
|
||||
using UnityEngine;
|
||||
|
||||
namespace AssetUsageFinder.Styles {
|
||||
class WindowStyleAsset : ScriptableObject {
|
||||
#pragma warning disable 0649
|
||||
public DependencyWindow.Style Pro;
|
||||
public DependencyWindow.Style Personal;
|
||||
#pragma warning restore
|
||||
|
||||
#if !false
|
||||
[CustomEditor(typeof (WindowStyleAsset))]
|
||||
class Editor : UnityEditor.Editor
|
||||
{
|
||||
public override void OnInspectorGUI()
|
||||
{
|
||||
EditorGUI.BeginChangeCheck();
|
||||
base.OnInspectorGUI();
|
||||
if (EditorGUI.EndChangeCheck())
|
||||
InternalEditorUtility.RepaintAllViews();
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2a8038d7a393d814b887bec61ad77979
|
||||
timeCreated: 1467571260
|
||||
licenseType: Store
|
||||
MonoImporter:
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user