diff options
Diffstat (limited to 'Assets/Art/BOXOPHOBIC/Utils')
128 files changed, 0 insertions, 3541 deletions
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor.meta deleted file mode 100644 index d307ca47..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6a27ef5e38a3d75469ae0bbc56f885b3 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/Boxophobic.Utils.Editor.asmdef b/Assets/Art/BOXOPHOBIC/Utils/Editor/Boxophobic.Utils.Editor.asmdef deleted file mode 100644 index a15acddb..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/Boxophobic.Utils.Editor.asmdef +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "Boxophobic.Utils.Editor", - "references": [ - "Boxophobic.Utils.Scripts" - ], - "optionalUnityReferences": [], - "includePlatforms": [ - "Editor" - ], - "excludePlatforms": [], - "allowUnsafeCode": false, - "overrideReferences": false, - "precompiledReferences": [], - "autoReferenced": true, - "defineConstraints": [] -}
\ No newline at end of file diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/Boxophobic.Utils.Editor.asmdef.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/Boxophobic.Utils.Editor.asmdef.meta deleted file mode 100644 index 90e25f0e..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/Boxophobic.Utils.Editor.asmdef.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 10f1dd4cfd6afb54da274d7d818bd8f6 -AssemblyDefinitionImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/Constants.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/Constants.meta deleted file mode 100644 index 317a31f8..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/Constants.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: f975f7f073569654bb9318215ba4cd73 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/Constants/Constants.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/Constants/Constants.cs deleted file mode 100644 index 7580a347..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/Constants/Constants.cs +++ /dev/null @@ -1,138 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-
-namespace Boxophobic.Constants
-{
- public static class CONSTANT
- {
- public static Texture2D LogoImage
- {
- get
- {
- return Resources.Load("Boxophobic - Logo") as Texture2D;
- }
- }
-
- public static Texture2D BannerImageBegin
- {
- get
- {
- return Resources.Load("Boxophobic - BannerBegin") as Texture2D;
- }
- }
-
- public static Texture2D BannerImageMiddle
- {
- get
- {
- return Resources.Load("Boxophobic - BannerMiddle") as Texture2D;
- }
- }
-
- public static Texture2D BannerImageEnd
- {
- get
- {
- return Resources.Load("Boxophobic - BannerEnd") as Texture2D;
- }
- }
-
- public static Texture2D CategoryImageBegin
- {
- get
- {
- return Resources.Load("Boxophobic - CategoryBegin") as Texture2D;
- }
- }
-
- public static Texture2D CategoryImageMiddle
- {
- get
- {
- return Resources.Load("Boxophobic - CategoryMiddle") as Texture2D;
- }
- }
-
- public static Texture2D CategoryImageEnd
- {
- get
- {
- return Resources.Load("Boxophobic - CategoryEnd") as Texture2D;
- }
- }
-
- public static Texture2D IconEdit
- {
- get
- {
- return Resources.Load("Boxophobic - IconEdit") as Texture2D;
- }
- }
-
- public static Texture2D IconHelp
- {
- get
- {
- return Resources.Load("Boxophobic - IconHelp") as Texture2D;
- }
- }
-
- public static Color ColorDarkGray
- {
- get
- {
- return new Color(0.27f, 0.27f, 0.27f);
- }
- }
-
- public static Color ColorLightGray
- {
- get
- {
- return new Color(0.83f, 0.83f, 0.83f);
- }
- }
-
- public static GUIStyle TitleStyle
- {
- get
- {
- GUIStyle guiStyle = new GUIStyle
- {
- richText = true,
- alignment = TextAnchor.MiddleCenter
- };
-
- return guiStyle;
- }
- }
-
- public static GUIStyle BoldTextStyle
- {
- get
- {
- GUIStyle guiStyle = new GUIStyle();
-
- Color color;
-
- if (EditorGUIUtility.isProSkin)
- {
- color = new Color(0.87f, 0.87f, 0.87f);
- }
- else
- {
- color = new Color(0.27f, 0.27f, 0.27f);
- }
-
- guiStyle.normal.textColor = color;
- guiStyle.alignment = TextAnchor.MiddleCenter;
- guiStyle.fontStyle = FontStyle.Bold;
-
- return guiStyle;
- }
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/Constants/Constants.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/Constants/Constants.cs.meta deleted file mode 100644 index 578f0665..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/Constants/Constants.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: e0cf8ff3bbc97374f88272f686fb80e5
-timeCreated: 1541442079
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/SettingsUtils.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/SettingsUtils.meta deleted file mode 100644 index e9b98bba..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/SettingsUtils.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3ddf9a50ab07a4e469766a6d18a98031 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/SettingsUtils/LoadSettingsData.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/SettingsUtils/LoadSettingsData.cs deleted file mode 100644 index fb1c3b85..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/SettingsUtils/LoadSettingsData.cs +++ /dev/null @@ -1,71 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using System.Globalization;
-using UnityEditor;
-
-namespace Boxophobic.Utils
-{
- public partial class SettingsUtils
- {
- public static string LoadSettingsData(string settingsPath, string defaultData)
- {
- var settings = AssetDatabase.LoadAssetAtPath<SettingsData>(settingsPath);
-
- if (settings != null)
- {
- return settings.data;
- }
- else
- {
- return defaultData;
- }
- }
-
- public static int LoadSettingsData(string settingsPath, int defaultData)
- {
- var settings = AssetDatabase.LoadAssetAtPath<SettingsData>(settingsPath);
-
- if (settings != null)
- {
- int value;
-
- if (int.TryParse(settings.data, out value))
- {
- return value;
- }
- else
- {
- return defaultData;
- }
- }
- else
- {
- return defaultData;
- }
- }
-
- public static float LoadSettingsData(string settingsPath, float defaultData)
- {
- var settings = AssetDatabase.LoadAssetAtPath<SettingsData>(settingsPath);
-
- if (settings != null)
- {
- float value;
-
- if (float.TryParse(settings.data, out value))
- {
- return float.Parse(settings.data, CultureInfo.InvariantCulture);
- }
- else
- {
- return defaultData;
- }
- }
- else
- {
- return defaultData;
- }
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/SettingsUtils/LoadSettingsData.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/SettingsUtils/LoadSettingsData.cs.meta deleted file mode 100644 index 41d9fe28..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/SettingsUtils/LoadSettingsData.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 90057ce590a8bd148ab59e018f35d9cb -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/SettingsUtils/SaveSettingsData.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/SettingsUtils/SaveSettingsData.cs deleted file mode 100644 index 5e9dcf7f..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/SettingsUtils/SaveSettingsData.cs +++ /dev/null @@ -1,71 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using System.IO;
-using UnityEditor;
-using UnityEngine;
-
-namespace Boxophobic.Utils
-{
- public partial class SettingsUtils
- {
- public static void SaveSettingsData(string settingsPath, string data)
- {
- CreateFileIfMissing(settingsPath);
-
- var settings = AssetDatabase.LoadAssetAtPath<SettingsData>(settingsPath);
-
- settings.data = data;
-
- SaveFile(settingsPath);
- }
-
- public static void SaveSettingsData(string settingsPath, int data)
- {
- CreateFileIfMissing(settingsPath);
-
- var settings = AssetDatabase.LoadAssetAtPath<SettingsData>(settingsPath);
-
- settings.data = data.ToString();
-
- SaveFile(settingsPath);
- }
-
- public static void SaveSettingsData(string settingsPath, float data)
- {
- CreateFileIfMissing(settingsPath);
-
- var settings = AssetDatabase.LoadAssetAtPath<SettingsData>(settingsPath);
-
- settings.data = data.ToString();
-
- SaveFile(settingsPath);
- }
-
- private static void CreateFileIfMissing(string settingsPath)
- {
- if (File.Exists(settingsPath) == false)
- {
- var directory = Path.GetDirectoryName(settingsPath);
-
- if (Directory.Exists(directory) == false)
- {
- Directory.CreateDirectory(directory);
- AssetDatabase.Refresh();
- }
-
- AssetDatabase.CreateAsset(ScriptableObject.CreateInstance<SettingsData>(), settingsPath);
- AssetDatabase.Refresh();
- }
- }
-
- private static void SaveFile(string settingsPath)
- {
- var file = AssetDatabase.LoadAssetAtPath<SettingsData>(settingsPath);
-
- EditorUtility.SetDirty(file);
- AssetDatabase.SaveAssets();
- AssetDatabase.Refresh();
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/SettingsUtils/SaveSettingsData.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/SettingsUtils/SaveSettingsData.cs.meta deleted file mode 100644 index 753e92ed..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/SettingsUtils/SaveSettingsData.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 7afe5a6ac49829c408df7e64761e822d -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI.meta deleted file mode 100644 index 9144e9d9..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 4a1230a2a75d21048917b14c34140601 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawInspectorBanner.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawInspectorBanner.cs deleted file mode 100644 index 0d3476c5..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawInspectorBanner.cs +++ /dev/null @@ -1,64 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-using Boxophobic.Constants;
-
-namespace Boxophobic.StyledGUI
-{
- public partial class StyledGUI
- {
- public static void DrawInspectorBanner(Color bannerColor, string bannerText, string helpURL)
- {
- GUILayout.Space(20);
-
- var bannerFullRect = GUILayoutUtility.GetRect(0, 0, 40, 0);
- var bannerBeginRect = new Rect(bannerFullRect.position.x, bannerFullRect.position.y, 20, 40);
- var bannerMiddleRect = new Rect(bannerFullRect.position.x + 20, bannerFullRect.position.y, bannerFullRect.xMax - 54, 40);
- var bannerEndRect = new Rect(bannerFullRect.xMax - 20, bannerFullRect.position.y, 20, 40);
- var iconRect = new Rect(bannerFullRect.xMax - 36, bannerFullRect.position.y + 5, 30, 30);
-
- Color guiColor;
-
- if (EditorGUIUtility.isProSkin)
- {
- bannerColor = new Color(bannerColor.r, bannerColor.g, bannerColor.b, 1f);
- }
- else
- {
- bannerColor = CONSTANT.ColorLightGray;
- }
-
- if (bannerColor.r + bannerColor.g + bannerColor.b <= 1.5f)
- {
- guiColor = CONSTANT.ColorLightGray;
- }
- else
- {
- guiColor = CONSTANT.ColorDarkGray;
- }
-
- GUI.color = bannerColor;
-
- GUI.DrawTexture(bannerBeginRect, CONSTANT.BannerImageBegin, ScaleMode.StretchToFill, true);
- GUI.DrawTexture(bannerMiddleRect, CONSTANT.BannerImageMiddle, ScaleMode.StretchToFill, true);
- GUI.DrawTexture(bannerEndRect, CONSTANT.BannerImageEnd, ScaleMode.StretchToFill, true);
-
-#if UNITY_2019_3_OR_NEWER
- GUI.Label(bannerFullRect, "<size=14><color=#" + ColorUtility.ToHtmlStringRGB(guiColor) + ">" + bannerText + "</color></size>", CONSTANT.TitleStyle);
-#else
- GUI.Label(bannerFullRect, "<size=14><color=#" + ColorUtility.ToHtmlStringRGB(guiColor) + "><b>" + bannerText + "</b></color></size>", CONSTANT.TitleStyle);
-#endif
- GUI.color = guiColor;
-
- if (GUI.Button(iconRect, CONSTANT.IconHelp, new GUIStyle { alignment = TextAnchor.MiddleCenter }))
- {
- Application.OpenURL(helpURL);
- }
-
- GUI.color = Color.white;
- GUILayout.Space(10);
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawInspectorBanner.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawInspectorBanner.cs.meta deleted file mode 100644 index b8754bf1..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawInspectorBanner.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: 1525d4228f26951498e86e425363f3f0
-timeCreated: 1542661236
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawInspectorCategory.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawInspectorCategory.cs deleted file mode 100644 index f0b66fe3..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawInspectorCategory.cs +++ /dev/null @@ -1,46 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-using Boxophobic.Constants;
-
-namespace Boxophobic.StyledGUI
-{
- public partial class StyledGUI
- {
- public static void DrawInspectorCategory(Rect position, string bannerText)
- {
- var categoryFullRect = new Rect(position.position.x, position.position.y + 10, position.width, position.height);
- var categoryBeginRect = new Rect(categoryFullRect.position.x, categoryFullRect.position.y, 10, 20);
- var categoryMiddleRect = new Rect(categoryFullRect.position.x + 10, categoryFullRect.position.y, categoryFullRect.xMax - 32, 20);
- var categoryEndRect = new Rect(categoryFullRect.xMax - 10, categoryFullRect.position.y, 10, 20);
- var titleRect = new Rect(categoryFullRect.position.x, categoryFullRect.position.y, categoryFullRect.width, 18);
-
- if (EditorGUIUtility.isProSkin)
- {
- GUI.color = CONSTANT.ColorDarkGray;
- }
- else
- {
- GUI.color = CONSTANT.ColorLightGray;
- }
-
- //Workaround for flickering images in CustomInspector with Attribute
- GUIStyle styleB = new GUIStyle();
- styleB.normal.background = CONSTANT.CategoryImageBegin;
- EditorGUI.LabelField(categoryBeginRect, GUIContent.none, styleB);
-
- GUIStyle styleM = new GUIStyle();
- styleM.normal.background = CONSTANT.CategoryImageMiddle;
- EditorGUI.LabelField(categoryMiddleRect, GUIContent.none, styleM);
-
- GUIStyle styleE = new GUIStyle();
- styleE.normal.background = CONSTANT.CategoryImageEnd;
- EditorGUI.LabelField(categoryEndRect, GUIContent.none, styleE);
-
- GUI.color = Color.white;
- GUI.Label(titleRect, bannerText, CONSTANT.BoldTextStyle);
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawInspectorCategory.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawInspectorCategory.cs.meta deleted file mode 100644 index 567c6b15..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawInspectorCategory.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: 87b94a9c1333f074e8c24cd5a2fe1d73
-timeCreated: 1542661236
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawWindowBanner.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawWindowBanner.cs deleted file mode 100644 index 85a50d27..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawWindowBanner.cs +++ /dev/null @@ -1,64 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-using Boxophobic.Constants;
-
-namespace Boxophobic.StyledGUI
-{
- public partial class StyledGUI
- {
- public static void DrawWindowBanner(Color bannerColor, string bannerText, string helpURL)
- {
- GUILayout.Space(20);
-
- var bannerFullRect = GUILayoutUtility.GetRect(0, 0, 40, 0);
- var bannerBeginRect = new Rect(bannerFullRect.position.x + 20, bannerFullRect.position.y, 20, 40);
- var bannerMiddleRect = new Rect(bannerFullRect.position.x + 40, bannerFullRect.position.y, bannerFullRect.xMax - 75, 40);
- var bannerEndRect = new Rect(bannerFullRect.xMax - 36, bannerFullRect.position.y, 20, 40);
- var iconRect = new Rect(bannerFullRect.xMax - 53, bannerFullRect.position.y + 5, 30, 30);
-
- Color guiColor;
-
- if (EditorGUIUtility.isProSkin)
- {
- bannerColor = new Color(bannerColor.r, bannerColor.g, bannerColor.b, 1f);
- }
- else
- {
- bannerColor = CONSTANT.ColorLightGray;
- }
-
- if (bannerColor.r + bannerColor.g + bannerColor.b <= 1.5)
- {
- guiColor = CONSTANT.ColorLightGray;
- }
- else
- {
- guiColor = CONSTANT.ColorDarkGray;
- }
-
- GUI.color = bannerColor;
-
- GUI.DrawTexture(bannerBeginRect, CONSTANT.BannerImageBegin, ScaleMode.StretchToFill, true);
- GUI.DrawTexture(bannerMiddleRect, CONSTANT.BannerImageMiddle, ScaleMode.StretchToFill, true);
- GUI.DrawTexture(bannerEndRect, CONSTANT.BannerImageEnd, ScaleMode.StretchToFill, true);
-
- GUI.color = guiColor;
-
-#if UNITY_2019_3_OR_NEWER
- GUI.Label(bannerFullRect, "<size=16><color=#" + ColorUtility.ToHtmlStringRGB(guiColor) + ">" + bannerText + "</color></size>", CONSTANT.TitleStyle);
-#else
- GUI.Label(bannerFullRect, "<size=14><color=#" + ColorUtility.ToHtmlStringRGB(guiColor) + "><b>" + bannerText + "</b></color></size>", CONSTANT.TitleStyle);
-#endif
- if (GUI.Button(iconRect, CONSTANT.IconHelp, new GUIStyle { alignment = TextAnchor.MiddleCenter }))
- {
- Application.OpenURL(helpURL);
- }
-
- GUI.color = Color.white;
- GUILayout.Space(20);
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawWindowBanner.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawWindowBanner.cs.meta deleted file mode 100644 index 6978d25a..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawWindowBanner.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: dd0ddca94871d9a4586a143a83184806 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawWindowCategory.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawWindowCategory.cs deleted file mode 100644 index 8950ff7b..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawWindowCategory.cs +++ /dev/null @@ -1,48 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-using Boxophobic.Constants;
-
-namespace Boxophobic.StyledGUI
-{
- public partial class StyledGUI
- {
- public static void DrawWindowCategory(string bannerText)
- {
- var position = GUILayoutUtility.GetRect(0, 0, 40, 0);
-
- var categoryFullRect = new Rect(position.position.x, position.position.y + 10, position.width, position.height);
- var categoryBeginRect = new Rect(categoryFullRect.position.x, categoryFullRect.position.y, 10, 20);
- var categoryMiddleRect = new Rect(categoryFullRect.position.x + 10, categoryFullRect.position.y, categoryFullRect.xMax - 41, 20);
- var categoryEndRect = new Rect(categoryFullRect.xMax - 13, categoryFullRect.position.y, 10, 20);
- var titleRect = new Rect(categoryFullRect.position.x, categoryFullRect.position.y, categoryFullRect.width, 18);
-
- if (EditorGUIUtility.isProSkin)
- {
- GUI.color = CONSTANT.ColorDarkGray;
- }
- else
- {
- GUI.color = CONSTANT.ColorLightGray;
- }
-
- //Workaround for flickering images in CustomInspector with Attribute
- GUIStyle styleB = new GUIStyle();
- styleB.normal.background = CONSTANT.CategoryImageBegin;
- EditorGUI.LabelField(categoryBeginRect, GUIContent.none, styleB);
-
- GUIStyle styleM = new GUIStyle();
- styleM.normal.background = CONSTANT.CategoryImageMiddle;
- EditorGUI.LabelField(categoryMiddleRect, GUIContent.none, styleM);
-
- GUIStyle styleE = new GUIStyle();
- styleE.normal.background = CONSTANT.CategoryImageEnd;
- EditorGUI.LabelField(categoryEndRect, GUIContent.none, styleE);
-
- GUI.color = Color.white;
- GUI.Label(titleRect, bannerText, CONSTANT.BoldTextStyle);
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawWindowCategory.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawWindowCategory.cs.meta deleted file mode 100644 index 514bf87e..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledGUI/DrawWindowCategory.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: aac99d6d81f90e54cabd822770c11875
-timeCreated: 1542661236
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector.meta deleted file mode 100644 index 78def35b..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 05282c25086dbbf4eb12cbe3cf6f16fc -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledBannerDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledBannerDrawer.cs deleted file mode 100644 index 133574e8..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledBannerDrawer.cs +++ /dev/null @@ -1,83 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-using Boxophobic.Constants;
-
-namespace Boxophobic.StyledGUI
-{
- [CustomPropertyDrawer(typeof(StyledBanner))]
- public class StyledBannerAttributeDrawer : PropertyDrawer
- {
- StyledBanner a;
-
- public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
- {
- a = (StyledBanner)attribute;
-
- DrawBanner();
- }
-
- public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
- {
- return -2;
- }
-
- void DrawBanner()
- {
- GUILayout.Space(a.spaceTop);
-
- var bannerFullRect = GUILayoutUtility.GetRect(0, 0, 40, 0);
- var bannerBeginRect = new Rect(bannerFullRect.position.x, bannerFullRect.position.y, 20, 40);
- var bannerMiddleRect = new Rect(bannerFullRect.position.x + 20, bannerFullRect.position.y, bannerFullRect.xMax - 54, 40);
- var bannerEndRect = new Rect(bannerFullRect.xMax - 20, bannerFullRect.position.y, 20, 40);
- var iconRect = new Rect(bannerFullRect.xMax - 36, bannerFullRect.position.y + 5, 30, 30);
-
- Color bannerColor;
- Color guiColor;
-
- if (EditorGUIUtility.isProSkin)
- {
- if (a.colorR < 0)
- {
- bannerColor = CONSTANT.ColorDarkGray;
- guiColor = CONSTANT.ColorLightGray;
-
- }
- else
- {
- bannerColor = new Color(a.colorR, a.colorG, a.colorB, 1f);
- guiColor = CONSTANT.ColorDarkGray;
- }
- }
- else
- {
- bannerColor = CONSTANT.ColorLightGray;
- guiColor = CONSTANT.ColorDarkGray;
- }
-
- GUI.color = bannerColor;
-
- GUI.DrawTexture(bannerBeginRect, CONSTANT.BannerImageBegin, ScaleMode.StretchToFill, true);
- GUI.DrawTexture(bannerMiddleRect, CONSTANT.BannerImageMiddle, ScaleMode.StretchToFill, true);
- GUI.DrawTexture(bannerEndRect, CONSTANT.BannerImageEnd, ScaleMode.StretchToFill, true);
-
-#if UNITY_2019_3_OR_NEWER
- GUI.Label(bannerFullRect, "<size=16><color=#" + ColorUtility.ToHtmlStringRGB(guiColor) + ">" + a.title + " " + a.subtitle + "</color></size>", CONSTANT.TitleStyle);
-#else
- GUI.Label(bannerFullRect, "<size=14><color=#" + ColorUtility.ToHtmlStringRGB(guiColor) + "><b>" + a.title + "</b> " + a.subtitle + "</color></size>", CONSTANT.TitleStyle);
-#endif
- GUI.color = guiColor;
-
- if (GUI.Button(iconRect, CONSTANT.IconHelp, new GUIStyle { alignment = TextAnchor.MiddleCenter }))
- {
- Application.OpenURL(a.helpURL);
- }
-
- GUI.color = Color.white;
-
- GUILayout.Space(a.spaceBottom);
- }
- }
-
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledBannerDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledBannerDrawer.cs.meta deleted file mode 100644 index f856a02b..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledBannerDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: a832b9f47ccef214e81c89efe6bf31dd
-timeCreated: 1544998323
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledButtonDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledButtonDrawer.cs deleted file mode 100644 index 7814d2cc..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledButtonDrawer.cs +++ /dev/null @@ -1,33 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-
-namespace Boxophobic.StyledGUI
-{
- [CustomPropertyDrawer(typeof(StyledButton))]
- public class StyledButtonAttributeDrawer : PropertyDrawer
- {
- StyledButton a;
-
- public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
- {
- a = (StyledButton)attribute;
-
- GUILayout.Space(a.Top);
-
- if (GUILayout.Button(a.Text))
- {
- property.boolValue = true;
- }
-
- GUILayout.Space(a.Down);
- }
-
- public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
- {
- return -2;
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledButtonDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledButtonDrawer.cs.meta deleted file mode 100644 index c78a77d0..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledButtonDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: b1d35dbbb9b6c214aa892d7b240de3df
-timeCreated: 1544998323
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledCategoryDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledCategoryDrawer.cs deleted file mode 100644 index 96516911..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledCategoryDrawer.cs +++ /dev/null @@ -1,28 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-using Boxophobic.Constants;
-
-namespace Boxophobic.StyledGUI
-{
- [CustomPropertyDrawer(typeof(StyledCategory))]
- public class StyledCategoryAttributeDrawer : PropertyDrawer
- {
- StyledCategory a;
-
- public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
- {
- a = (StyledCategory)attribute;
-
- GUI.enabled = true;
-
- StyledGUI.DrawInspectorCategory(position, a.category);
- }
-
- public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
- {
- return 40;
- }
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledCategoryDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledCategoryDrawer.cs.meta deleted file mode 100644 index ac2a05e9..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledCategoryDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: fb59d41716ab6114cb7cf03a5695083b
-timeCreated: 1544998323
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledIndentDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledIndentDrawer.cs deleted file mode 100644 index 1f1d2e40..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledIndentDrawer.cs +++ /dev/null @@ -1,25 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-
-namespace Boxophobic.StyledGUI
-{
- [CustomPropertyDrawer(typeof(StyledIndent))]
- public class StyledIndentAttributeDrawer : PropertyDrawer
- {
- StyledIndent a;
-
- public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
- {
- a = (StyledIndent)attribute;
-
- EditorGUI.indentLevel = a.indent;
- }
-
- public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
- {
- return -2;
- }
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledIndentDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledIndentDrawer.cs.meta deleted file mode 100644 index 04574795..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledIndentDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: ea3f7407f69f900468d4b60de570e49d
-timeCreated: 1544998323
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledInteractiveDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledInteractiveDrawer.cs deleted file mode 100644 index 1f31e352..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledInteractiveDrawer.cs +++ /dev/null @@ -1,55 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-
-namespace Boxophobic.StyledGUI
-{
- [CustomPropertyDrawer(typeof(StyledInteractive))]
- public class StyledInteractiveAttributeDrawer : PropertyDrawer
- {
- StyledInteractive a;
-
- private int Value;
- private string Keywork;
- public int Type;
-
- public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
- {
- a = (StyledInteractive)attribute;
-
- Value = a.value;
- Keywork = a.keyword;
- Type = a.type;
-
- if (Type == 0)
- {
- if (property.intValue == Value)
- {
- GUI.enabled = true;
- }
- else
- {
- GUI.enabled = false;
- }
- }
- else if (Type == 1)
- {
- if (Keywork == "ON")
- {
- GUI.enabled = true;
- }
- else if (Keywork == "OFF")
- {
- GUI.enabled = false;
- }
- }
-
- }
-
- public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
- {
- return -2;
- }
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledInteractiveDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledInteractiveDrawer.cs.meta deleted file mode 100644 index e9262191..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledInteractiveDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: 80229de18cd73624b8181a9db49a304f
-timeCreated: 1544998323
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledMessageDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledMessageDrawer.cs deleted file mode 100644 index c2b02d6c..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledMessageDrawer.cs +++ /dev/null @@ -1,52 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-
-namespace Boxophobic.StyledGUI
-{
- [CustomPropertyDrawer(typeof(StyledMessage))]
- public class StyledMessageAttributeDrawer : PropertyDrawer
- {
- StyledMessage a;
-
- bool show;
- MessageType messageType;
-
- public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
- {
- show = property.boolValue;
-
- if (show)
- {
- a = (StyledMessage)attribute;
-
- if (a.Type == "None")
- {
- messageType = MessageType.None;
- }
- else if (a.Type == "Info")
- {
- messageType = MessageType.Info;
- }
- else if (a.Type == "Warning")
- {
- messageType = MessageType.Warning;
- }
- else if (a.Type == "Error")
- {
- messageType = MessageType.Error;
- }
-
- GUILayout.Space(a.Top);
- EditorGUILayout.HelpBox(a.Message, messageType);
- GUILayout.Space(a.Down);
- }
- }
-
- public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
- {
- return -2;
- }
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledMessageDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledMessageDrawer.cs.meta deleted file mode 100644 index f207a760..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledMessageDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: 2734a300c1fbfb8499fe8a71e9b109e7
-timeCreated: 1544998323
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledPopupArrayDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledPopupArrayDrawer.cs deleted file mode 100644 index bcf8bbdb..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledPopupArrayDrawer.cs +++ /dev/null @@ -1,36 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-
-namespace Boxophobic.StyledGUI
-{
- [CustomPropertyDrawer(typeof(StyledPopupArray))]
- public class StyledPopupArrayAttributeDrawer : PropertyDrawer
- {
- StyledPopupArray a;
- private int index = 0;
-
- public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
- {
- a = (StyledPopupArray)attribute;
-
- var arrProp = property.serializedObject.FindProperty(a.array);
-
- var arr = new string[arrProp.arraySize];
-
- for (int i = 0; i < arrProp.arraySize; i++)
- {
- arr[i] = arrProp.GetArrayElementAtIndex(i).stringValue;
- }
-
- index = EditorGUILayout.Popup(property.displayName, index, arr);
- property.intValue = index;
- }
-
- public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
- {
- return -2;
- }
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledPopupArrayDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledPopupArrayDrawer.cs.meta deleted file mode 100644 index d7549d51..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledPopupArrayDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: bf9745e7c3c176c4395dbd644b463703
-timeCreated: 1544998323
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledPopupLayersDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledPopupLayersDrawer.cs deleted file mode 100644 index 0b2d4d4a..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledPopupLayersDrawer.cs +++ /dev/null @@ -1,40 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-
-namespace Boxophobic.StyledGUI
-{
- [CustomPropertyDrawer(typeof(StyledPopupLayers))]
- public class StyledPopupLayersAttributeDrawer : PropertyDrawer
- {
- private int index;
-
- public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
- {
- index = property.intValue;
-
- string[] allLayers = new string[32];
-
- for (int i = 0; i < 32; i++)
- {
- if (LayerMask.LayerToName(i).Length < 1)
- {
- allLayers[i] = "Missing";
- }
- else
- {
- allLayers[i] = LayerMask.LayerToName(i);
- }
- }
-
- index = EditorGUILayout.Popup(property.displayName, index, allLayers);
- property.intValue = index;
- }
-
- public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
- {
- return -2;
- }
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledPopupLayersDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledPopupLayersDrawer.cs.meta deleted file mode 100644 index cf036463..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledPopupLayersDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: b351b243374f2d948a9e9943abe174bf
-timeCreated: 1544998323
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledRangeOptionsDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledRangeOptionsDrawer.cs deleted file mode 100644 index 9af9807b..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledRangeOptionsDrawer.cs +++ /dev/null @@ -1,71 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-
-namespace Boxophobic.StyledGUI
-{
- [CustomPropertyDrawer(typeof(StyledRangeOptions))]
- public class StyledRangeOptionsAttributeDrawer : PropertyDrawer
- {
- StyledRangeOptions a;
-
- public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
- {
- a = (StyledRangeOptions)attribute;
-
- GUIStyle styleMid = new GUIStyle();
- styleMid.alignment = TextAnchor.MiddleCenter;
- styleMid.normal.textColor = Color.gray;
- styleMid.fontSize = 7;
-
- if (a.displayLabel.Length > 0)
- {
- EditorGUI.PropertyField(position, property, label, true);
- GUILayout.Space(5);
- }
-
- GUILayout.BeginHorizontal();
- GUILayout.Space(8);
- property.floatValue = GUILayout.HorizontalSlider(property.floatValue, a.min, a.max);
- property.floatValue = Mathf.Clamp(property.floatValue, a.min, a.max);
- property.floatValue = Mathf.Round(property.floatValue * 1000f) / 1000f;
- GUILayout.Space(8);
- GUILayout.EndHorizontal();
-
-#if UNITY_2019_3_OR_NEWER
- GUILayout.Space(15);
-#endif
- GUILayout.BeginHorizontal();
-
- int maxWidth = 20;
-
-#if UNITY_2019_3_OR_NEWER
- maxWidth = 28;
-#endif
- for (int i = 0; i < a.options.Length - 1; i++)
- {
- GUILayout.Label(a.options[i], styleMid, GUILayout.Width(maxWidth));
- GUILayout.Label("", styleMid);
- }
-
- GUILayout.Label(a.options[a.options.Length - 1], styleMid, GUILayout.Width(maxWidth));
- GUILayout.EndHorizontal();
-
- }
-
- public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
- {
- a = (StyledRangeOptions)attribute;
-
- if (a.displayLabel.Length > 0)
- {
- return 18;
- }
- else
- {
- return -2;
- }
- }
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledRangeOptionsDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledRangeOptionsDrawer.cs.meta deleted file mode 100644 index c76f9c35..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledRangeOptionsDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: a5681c6e5862ae545ba9b00a5b813250
-timeCreated: 1544998323
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledSpaceDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledSpaceDrawer.cs deleted file mode 100644 index 267fe54f..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledSpaceDrawer.cs +++ /dev/null @@ -1,25 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-
-namespace Boxophobic.StyledGUI
-{
- [CustomPropertyDrawer(typeof(StyledSpace))]
- public class StyledSpaceAttributeDrawer : PropertyDrawer
- {
- StyledSpace a;
-
- public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
- {
- a = (StyledSpace)attribute;
-
- GUILayout.Space(a.space);
- }
-
- public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
- {
- return -2;
- }
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledSpaceDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledSpaceDrawer.cs.meta deleted file mode 100644 index b5e5c875..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledSpaceDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: db0457065a494f34aa3b619f240d8bda
-timeCreated: 1544998323
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTextDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTextDrawer.cs deleted file mode 100644 index 3850da2e..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTextDrawer.cs +++ /dev/null @@ -1,45 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-
-namespace Boxophobic.StyledGUI
-{
- [CustomPropertyDrawer(typeof(StyledText))]
- public class StyledTextAttributeDrawer : PropertyDrawer
- {
- StyledText a;
-
- public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
- {
- a = (StyledText)attribute;
-
- GUIStyle styleLabel = new GUIStyle(EditorStyles.label)
- {
- richText = true,
- wordWrap = true
- };
-
- styleLabel.alignment = a.alignment;
-
- GUILayout.Space(a.top);
-
- if (a.disabled == true)
- {
- GUI.enabled = false;
- }
-
- GUILayout.Label(property.stringValue, styleLabel);
-
- GUI.enabled = true;
-
- GUILayout.Space(a.down);
- }
-
- public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
- {
- return -2;
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTextDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTextDrawer.cs.meta deleted file mode 100644 index 9aa5faee..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTextDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: aeec2ac650d2d8f40aa3b9e0cb807db5
-timeCreated: 1544998323
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTexturePreviewDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTexturePreviewDrawer.cs deleted file mode 100644 index b95184aa..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTexturePreviewDrawer.cs +++ /dev/null @@ -1,22 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-
-namespace Boxophobic.StyledGUI
-{
- [CustomPropertyDrawer(typeof(StyledTexturePreview))]
- public class StyledTexturePreviewAttributeDrawer : PropertyDrawer
- {
- public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
- {
- var rect = GUILayoutUtility.GetRect(0, 0, Screen.width, 0);
- GUI.DrawTexture(rect, (Texture)property.objectReferenceValue, ScaleMode.StretchToFill, false);
- }
-
- public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
- {
- return -2;
- }
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTexturePreviewDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTexturePreviewDrawer.cs.meta deleted file mode 100644 index 75c7f333..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledInspector/StyledTexturePreviewDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: c8daad1bc4051084ca6204e12dc0890d
-timeCreated: 1544998323
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial.meta deleted file mode 100644 index 6c2aa7ba..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 72d0e5549e090634c9f3ff5e896c3e93 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledBannerDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledBannerDrawer.cs deleted file mode 100644 index fe4e53d6..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledBannerDrawer.cs +++ /dev/null @@ -1,95 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-using Boxophobic.Constants;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledBannerDrawer : MaterialPropertyDrawer
- {
- public string title;
- public string subtitle;
-
- public StyledBannerDrawer(string title, string subtitle)
- {
- this.title = title;
- this.subtitle = subtitle;
- }
-
- public StyledBannerDrawer(string title)
- {
- this.title = title;
- this.subtitle = "";
- }
-
- public override void OnGUI(Rect position, MaterialProperty prop, string label, MaterialEditor materialEditor)
- {
- //EditorGUI.DrawRect(position, new Color(0, 1, 0, 0.05f));
-
- Material material = materialEditor.target as Material;
-
- DrawBanner(material.shader);
- }
-
- public override float GetPropertyHeight(MaterialProperty prop, string label, MaterialEditor editor)
- {
- return -2;
- }
-
- void DrawBanner(Shader shader)
- {
- GUILayout.Space(10);
-
- var bannerFullRect = GUILayoutUtility.GetRect(0, 0, 40, 0);
- var bannerBeginRect = new Rect(bannerFullRect.position.x, bannerFullRect.position.y, 20, 40);
- var bannerMiddleRect = new Rect(bannerFullRect.position.x + 20, bannerFullRect.position.y, bannerFullRect.xMax - 54, 40);
- var bannerEndRect = new Rect(bannerFullRect.xMax - 20, bannerFullRect.position.y, 20, 40);
- //var iconRect = new Rect(bannerFullRect.xMax - 36, bannerFullRect.position.y + 5, 30, 30);
-
- Color bannerColor;
- Color guiColor;
-
- if (EditorGUIUtility.isProSkin)
- {
- bannerColor = CONSTANT.ColorDarkGray;
- guiColor = CONSTANT.ColorLightGray;
- }
- else
- {
- bannerColor = CONSTANT.ColorLightGray;
- guiColor = CONSTANT.ColorDarkGray;
- }
-
- GUI.color = bannerColor;
-
- GUI.DrawTexture(bannerBeginRect, CONSTANT.BannerImageBegin, ScaleMode.StretchToFill, true);
- GUI.DrawTexture(bannerMiddleRect, CONSTANT.BannerImageMiddle, ScaleMode.StretchToFill, true);
- GUI.DrawTexture(bannerEndRect, CONSTANT.BannerImageEnd, ScaleMode.StretchToFill, true);
-
-#if UNITY_2019_3_OR_NEWER
- GUI.Label(bannerFullRect, "<color=#" + ColorUtility.ToHtmlStringRGB(guiColor) + "><size=16>" + title + "</size><size=14>" + " " + subtitle + "</size></color>", CONSTANT.TitleStyle);
-#else
- GUI.Label(bannerFullRect, "<size=14><color=#" + ColorUtility.ToHtmlStringRGB(guiColor) + "><b>" + title + "</b> " + subtitle + "</color></size>", CONSTANT.TitleStyle);
-#endif
-
-// GUI.color = guiColor;
-
-//#if AMPLIFY_SHADER_EDITOR
-// if (GUI.Button(iconRect, CONSTANT.IconEdit, new GUIStyle { alignment = TextAnchor.MiddleCenter }))
-// {
-// AmplifyShaderEditor.AmplifyShaderEditorWindow.ConvertShaderToASE(Shader.Find(shader.name));
-// }
-//#else
-// if (GUI.Button(iconRect, CONSTANT.IconEdit, new GUIStyle { alignment = TextAnchor.MiddleCenter }))
-// {
-// AssetDatabase.OpenAsset(Shader.Find(shader.name), 1);
-// }
-//#endif
-
- GUI.color = Color.white;
-
- GUILayout.Space(10);
- }
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledBannerDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledBannerDrawer.cs.meta deleted file mode 100644 index 636d5946..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledBannerDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: 864d8c89c5d2ef240b0c51f15c5211e2
-timeCreated: 1544998323
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledButtonDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledButtonDrawer.cs deleted file mode 100644 index 4c1a46ae..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledButtonDrawer.cs +++ /dev/null @@ -1,71 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-using System;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledButtonDrawer : MaterialPropertyDrawer
- {
- public string text;
- public string target = "";
- public float value = 1;
- public float top;
- public float down;
-
- public StyledButtonDrawer(string text)
- {
- this.text = text;
- this.value = 1;
- this.top = 0;
- this.down = 0;
- }
-
- public StyledButtonDrawer(string text, float value, float top, float down)
- {
- this.text = text;
- this.value = value;
- this.top = top;
- this.down = down;
- }
-
- public StyledButtonDrawer(string text, string target, float value, float top, float down)
- {
- this.text = text;
- this.target = target;
- this.value = value;
- this.top = top;
- this.down = down;
- }
-
- public override void OnGUI(Rect position, MaterialProperty prop, String label, MaterialEditor materialEditor)
- {
- Material material = materialEditor.target as Material;
-
- GUILayout.Space(top);
-
- if (GUILayout.Button(text))
- {
- if (target == "")
- {
- prop.floatValue = value;
- }
- else
- {
- if (material.HasProperty(target))
- {
- material.SetFloat(target, value);
- }
- }
- }
-
- GUILayout.Space(down);
- }
-
- public override float GetPropertyHeight(MaterialProperty prop, string label, MaterialEditor editor)
- {
- return -2;
- }
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledButtonDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledButtonDrawer.cs.meta deleted file mode 100644 index 20f8fd51..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledButtonDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: b40d7a397aa055b46a1651ee9f9bdd03
-timeCreated: 1542224092
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledCategoryDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledCategoryDrawer.cs deleted file mode 100644 index 640cfed7..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledCategoryDrawer.cs +++ /dev/null @@ -1,45 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-using System;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledCategoryDrawer : MaterialPropertyDrawer
- {
- public string category;
-
- public StyledCategoryDrawer(string category)
- {
- this.category = category;
- }
-
- public override void OnGUI(Rect position, MaterialProperty prop, String label, MaterialEditor materiaEditor)
- {
- if (prop.floatValue < 0)
- {
- GUI.enabled = true;
- EditorGUI.indentLevel = 0;
- }
- else
- {
- GUI.enabled = true;
- EditorGUI.indentLevel = 0;
- StyledGUI.DrawInspectorCategory(position, category);
- }
- }
-
- public override float GetPropertyHeight(MaterialProperty prop, string label, MaterialEditor editor)
- {
- if (prop.floatValue < 0)
- {
- return -2;
- }
- else
- {
- return 40;
- }
- }
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledCategoryDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledCategoryDrawer.cs.meta deleted file mode 100644 index e853f827..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledCategoryDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: 1b5715cd99e4a2e4c91d69653d31dad9
-timeCreated: 1542224092
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledDiffusionMaterialDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledDiffusionMaterialDrawer.cs deleted file mode 100644 index c3b6afeb..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledDiffusionMaterialDrawer.cs +++ /dev/null @@ -1,93 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-using System;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledDiffusionMaterialDrawer : MaterialPropertyDrawer
- {
- public string propName;
- //GUIStyle styleCenteredHelpBox;
-
- public StyledDiffusionMaterialDrawer(string propName)
- {
- this.propName = propName;
- }
-
- public override void OnGUI(Rect position, MaterialProperty prop, String label, MaterialEditor materialEditor)
- {
- //SetGUIStyles();
-
- Material material = materialEditor.target as Material;
-
- UnityEngine.Object materialAsset = null;
-
- GUILayout.Space(5);
-
- if (material.GetInt(propName) == 0)
- {
- EditorGUILayout.HelpBox("Diffusion profile values not set! Due to the current HDRP architecture the diffusion profiles are not directly supported. You will need to create an HDRP Lit material and assign a Diffusion Profile to it, drag this HDRP material to the " + label + " slot to allow the profile values to be copied to the material. The HDRP material will not be saved to the property field! Please refer to the documentation for more information.", MessageType.Warning);
- }
- else
- {
- EditorGUILayout.HelpBox("Diffusion profile values set! Due to the current HDRP architecture the diffusion profiles are not directly supported. You will need to create an HDRP Lit material and assign a Diffusion Profile to it, drag this HDRP material to the " + label + " slot to allow the profile values to be copied to the material. The HDRP material will not be saved to the property field! Please refer to the documentation for more information.", MessageType.Info);
- }
-
- GUILayout.Space(10);
-
- materialAsset = (Material)EditorGUILayout.ObjectField(label, materialAsset, typeof(Material), false);
-
- Material materialObject = AssetDatabase.LoadAssetAtPath<Material>(AssetDatabase.GetAssetPath(materialAsset));
-
- if (materialAsset != null)
- {
- if (materialObject.HasProperty("_DiffusionProfileAsset") && materialObject.HasProperty("_DiffusionProfileHash"))
- {
- var diffusionProfileAsset = materialObject.GetVector("_DiffusionProfileAsset");
- var diffusionProfileHash = materialObject.GetFloat("_DiffusionProfileHash");
-
- if (diffusionProfileAsset.x != 0 && diffusionProfileHash != 0)
- {
- material.SetVector(propName + "_asset", diffusionProfileAsset);
- material.SetFloat(propName, diffusionProfileHash);
-
- Debug.Log("Diffusion Profile settings copied from " + materialObject.name + "!");
-
- materialAsset = null;
- }
- else
- {
- material.SetVector(propName + "_asset", Vector4.zero);
- material.SetFloat(propName, 0.0f);
-
- Debug.Log("Diffusion Profile settings set to None because " + materialObject.name + " has no Diffusion Profile asset!");
-
- materialAsset = null;
- }
- }
- else
- {
- Debug.Log("The Material used to copy the Diffusion Profile does not a valid Diffusion Profile!");
- }
- }
-
- //EditorGUI.HelpBox(new Rect(position.x, position.y + top, position.width, position.height), message, mType);
- }
-
- public override float GetPropertyHeight(MaterialProperty prop, string label, MaterialEditor editor)
- {
- return -2;
- }
-
- //void SetGUIStyles()
- //{
- // styleCenteredHelpBox = new GUIStyle(GUI.skin.GetStyle("HelpBox"))
- // {
- // alignment = TextAnchor.MiddleCenter,
- // };
-
- //}
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledDiffusionMaterialDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledDiffusionMaterialDrawer.cs.meta deleted file mode 100644 index d01d4c28..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledDiffusionMaterialDrawer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: f13faeb510c3cb54ba5d051ecaad26e3 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledIndentDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledIndentDrawer.cs deleted file mode 100644 index 0905c5a0..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledIndentDrawer.cs +++ /dev/null @@ -1,30 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-using System;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledIndentDrawer : MaterialPropertyDrawer
- {
- public float indent;
-
- public StyledIndentDrawer(float indent)
- {
- this.indent = indent;
- }
-
- public override void OnGUI(Rect position, MaterialProperty prop, String label, MaterialEditor materialEditor)
- {
- //Material material = materialEditor.target as Material;
-
- EditorGUI.indentLevel = (int)indent;
- }
-
- public override float GetPropertyHeight(MaterialProperty prop, string label, MaterialEditor editor)
- {
- return -2;
- }
- }
-}
\ No newline at end of file diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledIndentDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledIndentDrawer.cs.meta deleted file mode 100644 index 2b9a0ba3..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledIndentDrawer.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: ae4fb3d8081065c47860724ea515c97c -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledInteractiveDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledInteractiveDrawer.cs deleted file mode 100644 index 3f321cbe..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledInteractiveDrawer.cs +++ /dev/null @@ -1,92 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-using System;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledInteractiveDrawer : MaterialPropertyDrawer
- {
- public string keyword;
- public float value1 = -1f;
- public float value2 = -1f;
- public float value3 = -1f;
-
- protected int type;
-
- public StyledInteractiveDrawer(string k)
- {
- type = 0;
- keyword = k;
- }
-
- public StyledInteractiveDrawer(string k, float v1)
- {
- type = 1;
- keyword = k;
- value1 = v1;
- }
-
- public StyledInteractiveDrawer(string k, float v1, float v2)
- {
- type = 1;
- keyword = k;
- value1 = v1;
- value2 = v2;
- }
-
- public StyledInteractiveDrawer(string k, float v1, float v2, float v3)
- {
- type = 1;
- keyword = k;
- value1 = v1;
- value2 = v2;
- value3 = v3;
- }
-
- public override void OnGUI(Rect position, MaterialProperty prop, String label, MaterialEditor materialEditor)
- {
- Material material = materialEditor.target as Material;
-
- if (type == 1)
- {
- if (material.HasProperty(keyword))
- {
- if (value1 == material.GetFloat(keyword) || value2 == material.GetFloat(keyword) || value3 == material.GetFloat(keyword))
- {
- GUI.enabled = true;
- }
- else
- {
- GUI.enabled = false;
- }
- }
- }
- else if (type == 0)
- {
- if (keyword == "ON")
- {
- GUI.enabled = true;
- }
- else if (keyword == "OFF")
- {
- GUI.enabled = false;
- }
- else if (material.IsKeywordEnabled(keyword))
- {
- GUI.enabled = true;
- }
- else
- {
- GUI.enabled = false;
- }
- }
- }
-
- public override float GetPropertyHeight(MaterialProperty prop, string label, MaterialEditor editor)
- {
- return -2;
- }
- }
-}
\ No newline at end of file diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledInteractiveDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledInteractiveDrawer.cs.meta deleted file mode 100644 index c0f32f8b..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledInteractiveDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: 7cc33d297d20daa40a9b09fbb8e59502
-timeCreated: 1544039105
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledMessageDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledMessageDrawer.cs deleted file mode 100644 index de9414a4..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledMessageDrawer.cs +++ /dev/null @@ -1,90 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-using System;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledMessageDrawer : MaterialPropertyDrawer
- {
- public string type;
- public string message;
- public string keyword;
- public float value;
- public float top;
- public float down;
-
- MessageType mType;
-
- public StyledMessageDrawer(string t, string m, float top, float down)
- {
- type = t;
- message = m;
- keyword = null;
-
- this.top = top;
- this.down = down;
- }
-
- public StyledMessageDrawer(string t, string m, string k, float v, float top, float down)
- {
- type = t;
- message = m;
- keyword = k;
- value = v;
-
- this.top = top;
- this.down = down;
- }
-
- public override void OnGUI(Rect position, MaterialProperty prop, String label, MaterialEditor materialEditor)
- {
- Material material = materialEditor.target as Material;
-
- if (type == "None")
- {
- mType = MessageType.None;
- }
- else if (type == "Info")
- {
- mType = MessageType.Info;
- }
- else if (type == "Warning")
- {
- mType = MessageType.Warning;
- }
- else if (type == "Error")
- {
- mType = MessageType.Error;
- }
-
- if (keyword != null)
- {
- if (material.HasProperty(keyword))
- {
- if (material.GetFloat(keyword) == value)
- {
- GUILayout.Space(top);
- //EditorGUI.DrawRect(new Rect(position.x, position.y + Top, position.width, position.height), new Color(1,0,0,0.3f));
- EditorGUILayout.HelpBox(message, mType);
- //EditorGUI.HelpBox(new Rect(position.x, position.y + top, position.width, position.height), message, mType);
- GUILayout.Space(down);
-
- }
- }
- }
- else
- {
- GUILayout.Space(top);
- EditorGUILayout.HelpBox(message, mType);
- GUILayout.Space(down);
- }
- }
-
- public override float GetPropertyHeight(MaterialProperty prop, string label, MaterialEditor editor)
- {
- return -2;
- }
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledMessageDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledMessageDrawer.cs.meta deleted file mode 100644 index 74e720bc..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledMessageDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: d01ce91280120de49b931b40f9e16f6b
-timeCreated: 1542224092
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledSpaceDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledSpaceDrawer.cs deleted file mode 100644 index 24a38b3c..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledSpaceDrawer.cs +++ /dev/null @@ -1,31 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledSpaceDrawer : MaterialPropertyDrawer
- {
- public float space;
-
- public StyledSpaceDrawer(float space)
- {
- this.space = space;
- }
-
- public override void OnGUI(Rect position, MaterialProperty prop, string label, MaterialEditor materialEditor)
- {
- //EditorGUI.DrawRect(position, new Color(0, 1, 0, 0.05f));
-
- //Material material = materialEditor.target as Material;
-
- GUILayout.Space(space);
- }
-
- public override float GetPropertyHeight(MaterialProperty prop, string label, MaterialEditor editor)
- {
- return -2;
- }
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledSpaceDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledSpaceDrawer.cs.meta deleted file mode 100644 index 05335608..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledSpaceDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: 1f2f57e67392e5b41af1a4cecc3a6c04
-timeCreated: 1544998323
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledTextDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledTextDrawer.cs deleted file mode 100644 index 88e07a48..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledTextDrawer.cs +++ /dev/null @@ -1,99 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-using System;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledTextDrawer : MaterialPropertyDrawer
- {
- public string text = "";
- public string alignment = "Center";
- public string font = "Normal";
- public string disabled = "";
- public float size = 11;
- public float top = 0;
- public float down = 0;
-
- public StyledTextDrawer(string text)
- {
- this.text = text;
- }
-
- public StyledTextDrawer(string text, string alignment, string font, string disabled, float size)
- {
- this.text = text;
- this.alignment = alignment;
- this.font = font;
- this.disabled = disabled;
- this.size = size;
- }
-
- public StyledTextDrawer(string text, string alignment, string font, string disabled, float size, float top, float down)
- {
- this.text = text;
- this.alignment = alignment;
- this.font = font;
- this.disabled = disabled;
- this.size = size;
- this.top = top;
- this.down = down;
- }
-
- public override void OnGUI(Rect position, MaterialProperty prop, String label, MaterialEditor materialEditor)
- {
- //Material material = materialEditor.target as Material;
-
- GUIStyle styleLabel = new GUIStyle(EditorStyles.label)
- {
- richText = true,
- alignment = TextAnchor.MiddleCenter,
- wordWrap = true
- };
-
- GUILayout.Space(top);
-
- if (alignment == "Center")
- {
- styleLabel.alignment = TextAnchor.MiddleCenter;
-
- }
- else if (alignment == "Left")
- {
- styleLabel.alignment = TextAnchor.MiddleCenter;
- }
- else if (alignment == "Left")
- {
- styleLabel.alignment = TextAnchor.MiddleCenter;
- }
-
- if (font == "Bold")
- {
- styleLabel.fontStyle = FontStyle.Bold;
- }
- else
- {
- styleLabel.fontStyle = FontStyle.Normal;
- }
-
- styleLabel.fontSize = (int)size;
-
- if (disabled == "Disabled")
- {
- GUI.enabled = false;
- }
-
- GUILayout.Label(text, styleLabel);
-
- GUI.enabled = true;
-
- GUILayout.Space(down);
- }
-
- public override float GetPropertyHeight(MaterialProperty prop, string label, MaterialEditor editor)
- {
- return -2;
- }
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledTextDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledTextDrawer.cs.meta deleted file mode 100644 index 35f119db..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledTextDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: e137daebc2f7e0c4aa0ee5c5b140e8fd
-timeCreated: 1542224092
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledToggleDrawer.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledToggleDrawer.cs deleted file mode 100644 index 79fb4543..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledToggleDrawer.cs +++ /dev/null @@ -1,80 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-using UnityEditor;
-using System;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledToggleDrawer : MaterialPropertyDrawer
- {
- public float width = 0;
-
- public StyledToggleDrawer()
- {
-
- }
-
- public StyledToggleDrawer(float width)
- {
- this.width = width;
- }
-
- public override void OnGUI(Rect position, MaterialProperty prop, String label, MaterialEditor materialEditor)
- {
- Material material = materialEditor.target as Material;
-
- if (width == 0)
- {
- bool toggle = false;
-
- if (prop.floatValue > 0.5f)
- {
- toggle = true;
- }
-
- toggle = EditorGUILayout.Toggle(label, toggle);
-
- if (toggle)
- {
- prop.floatValue = 1;
- }
- else
- {
- prop.floatValue = 0;
- }
- }
- else
- {
- GUILayout.BeginHorizontal();
-
- GUILayout.Label(label);
-
- bool toggle = false;
-
- if (prop.floatValue > 0.5f)
- {
- toggle = true;
- }
-
- toggle = GUILayout.Toggle(toggle, "", GUILayout.Width(width));
-
- if (toggle)
- {
- prop.floatValue = 1;
- }
- else
- {
- prop.floatValue = 0;
- }
-
- GUILayout.EndHorizontal();
- }
- }
-
- public override float GetPropertyHeight(MaterialProperty prop, string label, MaterialEditor editor)
- {
- return -2;
- }
- }
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledToggleDrawer.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledToggleDrawer.cs.meta deleted file mode 100644 index 33897f35..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMaterial/StyledToggleDrawer.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: d5699c954b5c9184199293b4ede31d57
-timeCreated: 1542224092
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMono.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMono.meta deleted file mode 100644 index ba24786c..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMono.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a8b42c332908fba438ec7ea14b4dded1 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMono/StyledMonoBehaviourEditor.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMono/StyledMonoBehaviourEditor.cs deleted file mode 100644 index db30921f..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMono/StyledMonoBehaviourEditor.cs +++ /dev/null @@ -1,20 +0,0 @@ -//#if UNITY_EDITOR
-using UnityEditor;
-
-namespace Boxophobic.StyledGUI
-{
- [CustomEditor(typeof(StyledMonoBehaviour), true)]
- [CanEditMultipleObjects]
- public class StyledMonoBehaviourEditor : Editor
- {
- public override void OnInspectorGUI()
- {
- serializedObject.Update();
- EditorGUI.BeginChangeCheck();
- DrawPropertiesExcluding(serializedObject, "m_Script");
- if (EditorGUI.EndChangeCheck())
- serializedObject.ApplyModifiedProperties();
- }
- }
-}
-//#endif
\ No newline at end of file diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMono/StyledMonoBehaviourEditor.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMono/StyledMonoBehaviourEditor.cs.meta deleted file mode 100644 index f60827ff..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMono/StyledMonoBehaviourEditor.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 29c1ac24df072a744a4bdc6a209772bf -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMono/StyledScriptableObjectEditor.cs b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMono/StyledScriptableObjectEditor.cs deleted file mode 100644 index accb83f3..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMono/StyledScriptableObjectEditor.cs +++ /dev/null @@ -1,20 +0,0 @@ -//#if UNITY_EDITOR
-using UnityEditor;
-
-namespace Boxophobic.StyledGUI
-{
- [CustomEditor(typeof(StyledScriptableObject), true)]
- [CanEditMultipleObjects]
- public class StyledScriptableObjectEditor : Editor
- {
- public override void OnInspectorGUI()
- {
- serializedObject.Update();
- EditorGUI.BeginChangeCheck();
- DrawPropertiesExcluding(serializedObject, "m_Script");
- if (EditorGUI.EndChangeCheck())
- serializedObject.ApplyModifiedProperties();
- }
- }
-}
-//#endif
\ No newline at end of file diff --git a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMono/StyledScriptableObjectEditor.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMono/StyledScriptableObjectEditor.cs.meta deleted file mode 100644 index cfff437a..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Editor/StyledMono/StyledScriptableObjectEditor.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 7a0e1a0aaab33f341b20d7d940fe0a06 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources.meta b/Assets/Art/BOXOPHOBIC/Utils/Resources.meta deleted file mode 100644 index 338cbff7..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: b1b58aafa2fedeb429de4a748510a6dd -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerBegin.psd b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerBegin.psd Binary files differdeleted file mode 100644 index 3a11e16c..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerBegin.psd +++ /dev/null diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerBegin.psd.meta b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerBegin.psd.meta deleted file mode 100644 index 5afae7a9..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerBegin.psd.meta +++ /dev/null @@ -1,84 +0,0 @@ -fileFormatVersion: 2
-guid: 9515108b8376ad7418e8138858201b72
-timeCreated: 1541620736
-licenseType: Store
-TextureImporter:
- fileIDToRecycleName: {}
- serializedVersion: 4
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 0
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- filterMode: -1
- aniso: 1
- mipBias: -1
- wrapMode: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 0
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spritePixelsToUnits: 100
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 2
- textureShape: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- platformSettings:
- - buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Standalone
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Android
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- spritePackingTag:
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerEnd.psd b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerEnd.psd Binary files differdeleted file mode 100644 index 11e86fae..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerEnd.psd +++ /dev/null diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerEnd.psd.meta b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerEnd.psd.meta deleted file mode 100644 index 555c0480..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerEnd.psd.meta +++ /dev/null @@ -1,84 +0,0 @@ -fileFormatVersion: 2
-guid: 0dd3fbd5475976a4aa96298afc680d17
-timeCreated: 1541620736
-licenseType: Store
-TextureImporter:
- fileIDToRecycleName: {}
- serializedVersion: 4
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 0
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- filterMode: -1
- aniso: 1
- mipBias: -1
- wrapMode: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 0
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spritePixelsToUnits: 100
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 2
- textureShape: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- platformSettings:
- - buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Standalone
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Android
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- spritePackingTag:
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerMiddle.psd b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerMiddle.psd Binary files differdeleted file mode 100644 index 6812f385..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerMiddle.psd +++ /dev/null diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerMiddle.psd.meta b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerMiddle.psd.meta deleted file mode 100644 index 562e206e..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - BannerMiddle.psd.meta +++ /dev/null @@ -1,84 +0,0 @@ -fileFormatVersion: 2
-guid: e3767adfa5dac5544830cd097ef6c09f
-timeCreated: 1541620736
-licenseType: Store
-TextureImporter:
- fileIDToRecycleName: {}
- serializedVersion: 4
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 0
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- filterMode: -1
- aniso: 1
- mipBias: -1
- wrapMode: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 0
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spritePixelsToUnits: 100
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 2
- textureShape: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- platformSettings:
- - buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Standalone
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Android
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- spritePackingTag:
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryBegin.psd b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryBegin.psd Binary files differdeleted file mode 100644 index 912c5e03..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryBegin.psd +++ /dev/null diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryBegin.psd.meta b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryBegin.psd.meta deleted file mode 100644 index 610069f3..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryBegin.psd.meta +++ /dev/null @@ -1,84 +0,0 @@ -fileFormatVersion: 2
-guid: 97ec2262fb592f94a9569e156ea65d7b
-timeCreated: 1542342551
-licenseType: Store
-TextureImporter:
- fileIDToRecycleName: {}
- serializedVersion: 4
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 0
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- filterMode: -1
- aniso: 1
- mipBias: -1
- wrapMode: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 0
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spritePixelsToUnits: 100
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 2
- textureShape: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- platformSettings:
- - buildTarget: DefaultTexturePlatform
- maxTextureSize: 64
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Standalone
- maxTextureSize: 64
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Android
- maxTextureSize: 64
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- spritePackingTag:
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryEnd.psd b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryEnd.psd Binary files differdeleted file mode 100644 index 9e7eaa46..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryEnd.psd +++ /dev/null diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryEnd.psd.meta b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryEnd.psd.meta deleted file mode 100644 index 0f4a7cc1..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryEnd.psd.meta +++ /dev/null @@ -1,84 +0,0 @@ -fileFormatVersion: 2
-guid: e1c856352cf5b9b479ddb80c85c84cd5
-timeCreated: 1542342551
-licenseType: Store
-TextureImporter:
- fileIDToRecycleName: {}
- serializedVersion: 4
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 0
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- filterMode: -1
- aniso: 1
- mipBias: -1
- wrapMode: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 0
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spritePixelsToUnits: 100
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 2
- textureShape: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- platformSettings:
- - buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Standalone
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Android
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- spritePackingTag:
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryMiddle.psd b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryMiddle.psd Binary files differdeleted file mode 100644 index 22c27f3c..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryMiddle.psd +++ /dev/null diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryMiddle.psd.meta b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryMiddle.psd.meta deleted file mode 100644 index b7a9d923..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - CategoryMiddle.psd.meta +++ /dev/null @@ -1,84 +0,0 @@ -fileFormatVersion: 2
-guid: 106fc33e3a3dab34f89693e3ed333fa2
-timeCreated: 1542342551
-licenseType: Store
-TextureImporter:
- fileIDToRecycleName: {}
- serializedVersion: 4
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 0
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- filterMode: -1
- aniso: 1
- mipBias: -1
- wrapMode: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 0
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spritePixelsToUnits: 100
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 2
- textureShape: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- platformSettings:
- - buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Standalone
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Android
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- spritePackingTag:
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - IconEdit.psd b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - IconEdit.psd Binary files differdeleted file mode 100644 index dee07097..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - IconEdit.psd +++ /dev/null diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - IconEdit.psd.meta b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - IconEdit.psd.meta deleted file mode 100644 index 42feeb98..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - IconEdit.psd.meta +++ /dev/null @@ -1,84 +0,0 @@ -fileFormatVersion: 2
-guid: cf593cb3310b7784a8f0967b8ba89b02
-timeCreated: 1542656899
-licenseType: Store
-TextureImporter:
- fileIDToRecycleName: {}
- serializedVersion: 4
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 0
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- filterMode: -1
- aniso: 1
- mipBias: -1
- wrapMode: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 0
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spritePixelsToUnits: 100
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 2
- textureShape: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- platformSettings:
- - buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Standalone
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Android
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- spritePackingTag:
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - IconHelp.psd b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - IconHelp.psd Binary files differdeleted file mode 100644 index bee573fe..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - IconHelp.psd +++ /dev/null diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - IconHelp.psd.meta b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - IconHelp.psd.meta deleted file mode 100644 index e0ee307e..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - IconHelp.psd.meta +++ /dev/null @@ -1,84 +0,0 @@ -fileFormatVersion: 2
-guid: b676a215be26cba488e51c0dda84e72d
-timeCreated: 1542663379
-licenseType: Store
-TextureImporter:
- fileIDToRecycleName: {}
- serializedVersion: 4
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 0
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- filterMode: -1
- aniso: 1
- mipBias: -1
- wrapMode: 1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 0
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spritePixelsToUnits: 100
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 2
- textureShape: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- platformSettings:
- - buildTarget: DefaultTexturePlatform
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Standalone
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Android
- maxTextureSize: 2048
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- spritePackingTag:
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - Logo.png b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - Logo.png Binary files differdeleted file mode 100644 index fda1f8a5..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - Logo.png +++ /dev/null diff --git a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - Logo.png.meta b/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - Logo.png.meta deleted file mode 100644 index b6e68c9a..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Resources/Boxophobic - Logo.png.meta +++ /dev/null @@ -1,92 +0,0 @@ -fileFormatVersion: 2
-guid: 4ebb9926546381046a4271ece54ce919
-timeCreated: 1522739004
-licenseType: Store
-TextureImporter:
- fileIDToRecycleName: {}
- serializedVersion: 4
- mipmaps:
- mipMapMode: 0
- enableMipMap: 0
- sRGBTexture: 0
- linearTexture: 0
- fadeOut: 0
- borderMipMap: 0
- mipMapFadeDistanceStart: 1
- mipMapFadeDistanceEnd: 3
- bumpmap:
- convertToNormalMap: 0
- externalNormalMap: 0
- heightScale: 0.25
- normalMapFilter: 0
- isReadable: 0
- grayScaleToAlpha: 0
- generateCubemap: 6
- cubemapConvolution: 0
- seamlessCubemap: 0
- textureFormat: 1
- maxTextureSize: 2048
- textureSettings:
- filterMode: -1
- aniso: -1
- mipBias: -1
- wrapMode: -1
- nPOTScale: 0
- lightmap: 0
- compressionQuality: 50
- spriteMode: 0
- spriteExtrude: 1
- spriteMeshType: 1
- alignment: 0
- spritePivot: {x: 0.5, y: 0.5}
- spriteBorder: {x: 0, y: 0, z: 0, w: 0}
- spritePixelsToUnits: 100
- alphaUsage: 1
- alphaIsTransparency: 1
- spriteTessellationDetail: -1
- textureType: 2
- textureShape: 1
- maxTextureSizeSet: 0
- compressionQualitySet: 0
- textureFormatSet: 0
- platformSettings:
- - buildTarget: DefaultTexturePlatform
- maxTextureSize: 32
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Standalone
- maxTextureSize: 32
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: Android
- maxTextureSize: 32
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- - buildTarget: WebGL
- maxTextureSize: 32
- textureFormat: -1
- textureCompression: 0
- compressionQuality: 50
- crunchedCompression: 0
- allowsAlphaSplitting: 0
- overridden: 0
- spriteSheet:
- serializedVersion: 2
- sprites: []
- outline: []
- spritePackingTag:
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts.meta deleted file mode 100644 index cb717a97..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 182523467462c8843927ea3a1521f7ba -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/Boxophobic.Utils.Scripts.asmdef b/Assets/Art/BOXOPHOBIC/Utils/Scripts/Boxophobic.Utils.Scripts.asmdef deleted file mode 100644 index 3354f295..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/Boxophobic.Utils.Scripts.asmdef +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Boxophobic.Utils.Scripts", - "references": [], - "includePlatforms": [], - "excludePlatforms": [], - "allowUnsafeCode": false, - "overrideReferences": false, - "precompiledReferences": [], - "autoReferenced": true, - "defineConstraints": [], - "versionDefines": [], - "noEngineReferences": false -}
\ No newline at end of file diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/Boxophobic.Utils.Scripts.asmdef.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/Boxophobic.Utils.Scripts.asmdef.meta deleted file mode 100644 index b8b8edd0..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/Boxophobic.Utils.Scripts.asmdef.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 825ad574da7360d4e8aea558f272972e -AssemblyDefinitionImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/SettingsUtils.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/SettingsUtils.meta deleted file mode 100644 index 0388e113..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/SettingsUtils.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 5d173e32f35ece04fb0dbcecc74ba8f9 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/SettingsUtils/SettingsData.cs b/Assets/Art/BOXOPHOBIC/Utils/Scripts/SettingsUtils/SettingsData.cs deleted file mode 100644 index 43557f87..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/SettingsUtils/SettingsData.cs +++ /dev/null @@ -1,13 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-
-namespace Boxophobic.Utils
-{
- [CreateAssetMenu(fileName = "Data", menuName = "BOXOPHOBIC/Settings Data")]
- public class SettingsData : ScriptableObject
- {
- [Space]
- public string data = "";
- }
-}
\ No newline at end of file diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/SettingsUtils/SettingsData.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/SettingsUtils/SettingsData.cs.meta deleted file mode 100644 index 97109cf8..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/SettingsUtils/SettingsData.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 93308045fbb3c5e42ba5ccb66d848632 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector.meta deleted file mode 100644 index 63020842..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 552b22f2a2991434caae4055e7f687b8 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledBanner.cs b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledBanner.cs deleted file mode 100644 index 568b1d85..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledBanner.cs +++ /dev/null @@ -1,51 +0,0 @@ -using UnityEngine;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledBanner : PropertyAttribute
- {
- public float colorR;
- public float colorG;
- public float colorB;
- public string title;
- public string subtitle;
- public int spaceTop;
- public int spaceBottom;
- public string helpURL;
-
- public StyledBanner(string title, string subtitle, string helpURL)
- {
- this.spaceTop = 10;
- this.spaceBottom = 10;
- this.colorR = -1;
- this.title = title;
- this.subtitle = subtitle;
- this.helpURL = helpURL;
- }
-
- public StyledBanner(float colorR, float colorG, float colorB, string title, string subtitle, string helpURL)
- {
- this.spaceTop = 10;
- this.spaceBottom = 10;
- this.colorR = colorR;
- this.colorG = colorG;
- this.colorB = colorB;
- this.title = title;
- this.subtitle = subtitle;
- this.helpURL = helpURL;
- }
-
- public StyledBanner(float colorR, float colorG, float colorB, string title, string subtitle, int spaceTop, int spaceBottom, string helpURL)
- {
- this.colorR = colorR;
- this.colorG = colorG;
- this.colorB = colorB;
- this.title = title;
- this.subtitle = subtitle;
- this.spaceTop = spaceTop;
- this.spaceBottom = spaceBottom;
- this.helpURL = helpURL;
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledBanner.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledBanner.cs.meta deleted file mode 100644 index 17d5e7c6..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledBanner.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: 0fb089d68a8e4634390e299256c8eec7
-timeCreated: 1544997099
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledButton.cs b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledButton.cs deleted file mode 100644 index 36092480..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledButton.cs +++ /dev/null @@ -1,28 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledButton : PropertyAttribute
- {
- public string Text = "";
- public float Top = 0;
- public float Down = 0;
-
- public StyledButton(string Text, string Message)
- {
- this.Text = Text;
- this.Top = 0;
- this.Down = 0;
- }
-
- public StyledButton(string Text, float Top, float Down)
- {
- this.Text = Text;
- this.Top = Top;
- this.Down = Down;
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledButton.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledButton.cs.meta deleted file mode 100644 index ec11104d..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledButton.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: 7c167590d9d480e438111f555c3a9d09
-timeCreated: 1544997099
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledCategory.cs b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledCategory.cs deleted file mode 100644 index 927b43c2..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledCategory.cs +++ /dev/null @@ -1,15 +0,0 @@ -using UnityEngine;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledCategory : PropertyAttribute
- {
- public string category;
-
- public StyledCategory(string category)
- {
- this.category = category;
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledCategory.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledCategory.cs.meta deleted file mode 100644 index ed349a6f..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledCategory.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: 6dfd994aa3f6b3944a0bd6effc2b3102
-timeCreated: 1544997099
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledIndent.cs b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledIndent.cs deleted file mode 100644 index 94015d40..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledIndent.cs +++ /dev/null @@ -1,17 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledIndent : PropertyAttribute
- {
- public int indent;
-
- public StyledIndent(int indent)
- {
- this.indent = indent;
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledIndent.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledIndent.cs.meta deleted file mode 100644 index 709de96b..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledIndent.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: fd0e43229939f8b45bd79345e699dfcd
-timeCreated: 1544997099
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledInteractive.cs b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledInteractive.cs deleted file mode 100644 index 8fd73a33..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledInteractive.cs +++ /dev/null @@ -1,27 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledInteractive : PropertyAttribute
- {
- public int value;
- public string keyword;
- public int type;
-
- public StyledInteractive(int v)
- {
- type = 0;
- value = v;
- }
-
- public StyledInteractive(string k)
- {
- type = 1;
- keyword = k;
- }
- }
-
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledInteractive.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledInteractive.cs.meta deleted file mode 100644 index 9cd49244..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledInteractive.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: 388415cfa9bb69041a8281bc567acec5
-timeCreated: 1544997099
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledMessage.cs b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledMessage.cs deleted file mode 100644 index f75624e0..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledMessage.cs +++ /dev/null @@ -1,31 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledMessage : PropertyAttribute
- {
- public string Type;
- public string Message;
- public float Top;
- public float Down;
-
- public StyledMessage(string Type, string Message)
- {
- this.Type = Type;
- this.Message = Message;
- this.Top = 0;
- this.Down = 0;
- }
-
- public StyledMessage(string Type, string Message, float Top, float Down)
- {
- this.Type = Type;
- this.Message = Message;
- this.Top = Top;
- this.Down = Down;
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledMessage.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledMessage.cs.meta deleted file mode 100644 index 969be37a..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledMessage.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: ab1d3117b9da8d7429e5ac70bd016772
-timeCreated: 1544997099
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledPopupArray.cs b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledPopupArray.cs deleted file mode 100644 index a3fb1557..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledPopupArray.cs +++ /dev/null @@ -1,17 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledPopupArray : PropertyAttribute
- {
- public string array;
-
- public StyledPopupArray(string array)
- {
- this.array = array;
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledPopupArray.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledPopupArray.cs.meta deleted file mode 100644 index f2221378..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledPopupArray.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: 0b32866cb35dd534c8ed7dda217b547e
-timeCreated: 1544997099
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledPopupLayers.cs b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledPopupLayers.cs deleted file mode 100644 index 01b59171..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledPopupLayers.cs +++ /dev/null @@ -1,11 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledPopupLayers : PropertyAttribute
- {
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledPopupLayers.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledPopupLayers.cs.meta deleted file mode 100644 index fa65de81..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledPopupLayers.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: 0859d05e88a639846b09d3b97fe33c7b
-timeCreated: 1544997099
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledRangeOptions.cs b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledRangeOptions.cs deleted file mode 100644 index 81ca43ea..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledRangeOptions.cs +++ /dev/null @@ -1,24 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledRangeOptions : PropertyAttribute
- {
- public float min;
- public float max;
- public string displayLabel;
- public string[] options;
-
- public StyledRangeOptions(float min, float max, string displayLabel, string[] options)
- {
- this.min = min;
- this.max = max;
- this.displayLabel = displayLabel;
-
- this.options = options;
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledRangeOptions.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledRangeOptions.cs.meta deleted file mode 100644 index cd0009d0..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledRangeOptions.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: 896f8a6be3053ff4a8f322a960986af1
-timeCreated: 1544997099
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledSpace.cs b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledSpace.cs deleted file mode 100644 index ec2fef0e..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledSpace.cs +++ /dev/null @@ -1,15 +0,0 @@ -using UnityEngine;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledSpace : PropertyAttribute
- {
- public int space;
-
- public StyledSpace(int space)
- {
- this.space = space;
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledSpace.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledSpace.cs.meta deleted file mode 100644 index 2d2d8d7e..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledSpace.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: e11186e2ccd8bf44d9d8699902268c99
-timeCreated: 1544997099
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledText.cs b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledText.cs deleted file mode 100644 index 7c53619d..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledText.cs +++ /dev/null @@ -1,34 +0,0 @@ -// Cristian Pop - https://boxophobic.com/
-
-using UnityEngine;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledText : PropertyAttribute
- {
- public string text = "";
- public TextAnchor alignment = TextAnchor.MiddleCenter;
- public bool disabled = false;
- public float top = 0;
- public float down = 0;
-
- public StyledText()
- {
- }
-
- public StyledText(TextAnchor alignment, bool disabled)
- {
- this.alignment = alignment;
- this.disabled = disabled;
- }
-
- public StyledText(TextAnchor alignment, bool disabled, float top, float down)
- {
- this.alignment = alignment;
- this.disabled = disabled;
- this.top = top;
- this.down = down;
- }
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledText.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledText.cs.meta deleted file mode 100644 index 20160153..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledText.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: df9ee7b5ab129dd4991f424a8d93430b
-timeCreated: 1544997099
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledTexturePreview.cs b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledTexturePreview.cs deleted file mode 100644 index c0a30531..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledTexturePreview.cs +++ /dev/null @@ -1,9 +0,0 @@ -using UnityEngine;
-
-namespace Boxophobic.StyledGUI
-{
- public class StyledTexturePreview : PropertyAttribute
- {
- }
-}
-
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledTexturePreview.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledTexturePreview.cs.meta deleted file mode 100644 index 9d5a8c0f..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledInspector/StyledTexturePreview.cs.meta +++ /dev/null @@ -1,12 +0,0 @@ -fileFormatVersion: 2
-guid: b33fc29a1077eff40880c4d54b57136c
-timeCreated: 1544997099
-licenseType: Store
-MonoImporter:
- serializedVersion: 2
- defaultReferences: []
- executionOrder: 0
- icon: {instanceID: 0}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledMono.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledMono.meta deleted file mode 100644 index 8717be17..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledMono.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3c68b6da1ed7bfe45aae9f6790b168d6 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledMono/StyledMonoBehaviour.cs b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledMono/StyledMonoBehaviour.cs deleted file mode 100644 index be59139e..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledMono/StyledMonoBehaviour.cs +++ /dev/null @@ -1,7 +0,0 @@ -using UnityEngine;
-using Boxophobic.StyledGUI;
-
-public class StyledMonoBehaviour : MonoBehaviour
-{
-
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledMono/StyledMonoBehaviour.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledMono/StyledMonoBehaviour.cs.meta deleted file mode 100644 index f856e01b..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledMono/StyledMonoBehaviour.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 0003a5bea05764747b05fa096a075848 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledMono/StyledScriptableObject.cs b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledMono/StyledScriptableObject.cs deleted file mode 100644 index 7515e5a6..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledMono/StyledScriptableObject.cs +++ /dev/null @@ -1,7 +0,0 @@ -using UnityEngine;
-using Boxophobic.StyledGUI;
-
-public class StyledScriptableObject: ScriptableObject
-{
-
-}
diff --git a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledMono/StyledScriptableObject.cs.meta b/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledMono/StyledScriptableObject.cs.meta deleted file mode 100644 index ac3c576e..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Scripts/StyledMono/StyledScriptableObject.cs.meta +++ /dev/null @@ -1,11 +0,0 @@ -fileFormatVersion: 2 -guid: 528a63c4c58b58a4ca3927eec830c596 -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Art/BOXOPHOBIC/Utils/Utils.pdf b/Assets/Art/BOXOPHOBIC/Utils/Utils.pdf Binary files differdeleted file mode 100644 index 16960da2..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Utils.pdf +++ /dev/null diff --git a/Assets/Art/BOXOPHOBIC/Utils/Utils.pdf.meta b/Assets/Art/BOXOPHOBIC/Utils/Utils.pdf.meta deleted file mode 100644 index 0dd274c3..00000000 --- a/Assets/Art/BOXOPHOBIC/Utils/Utils.pdf.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 0aca0e2d06b26544681357ef98393b10 -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: |