From e36d0a573cb8f02debc74e45ff3059a1dbe0a247 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnold=20Tak=C3=A1cs?= Date: Tue, 2 Aug 2016 19:52:32 +0300 Subject: [PATCH] [[Synced from revision 518]] [Simplicity] -- Palettes. Fixed many border button colors to cause less cross-element conflict. -- Now uses Operator font as default. -- Header text locked to a centered 17px height and reduced to 13 size for more consistent fontset scaling/positioning. -- Fixed AutoWidth issue with ControlLabel (causing some elements to not cover the full area). -- Active tabs now correctly maintain their right highlight line color. -- Added Mecanim Transition styles. --- .../Interface/Themes/Editor/ThemeSkinset.cs | 3 - .../Interface/Themes/Editor/ThemeSystem.cs | 2 +- Themes/Palettes/Basic/Silversky.unitypalette | 2 +- Themes/Palettes/Themed/3.11.unitypalette | 10 +- Themes/Palettes/Themed/Alien.unitypalette | 6 +- Themes/Palettes/Themed/Amped.unitypalette | 8 +- Themes/Palettes/Themed/Beaches.unitypalette | 8 +- Themes/Palettes/Themed/Lisa.unitypalette | 10 +- Themes/Palettes/Themed/Scream.unitypalette | 8 +- Themes/Palettes/Themed/SuperN.unitypalette | 8 +- Themes/Palettes/Themed/SymbOS.unitypalette | 6 +- Themes/Palettes/Themed/Terminal.unitypalette | 4 +- Themes/Palettes/Themed/XP.unitypalette | 2 +- Themes/Palettes/Themed/Zest.unitypalette | 2 +- Themes/Simplicity.unitytheme | 2 +- .../Background/ColorHighlight50.png | Bin 0 -> 1008 bytes .../Background/ColorHighlight50.png.meta | 59 ++++++ .../Background/Dynamic/#ColorHighlight50.png | Bin 0 -> 1008 bytes .../Dynamic/#ColorHighlight50.png.meta | 59 ++++++ .../Dynamic/#Sideline-Highlight.png | Bin 0 -> 15391 bytes .../Dynamic/#Sideline-Highlight.png.meta | 59 ++++++ .../Background/Dynamic/#TabActive.png | Bin 0 -> 1007 bytes .../Background/Dynamic/#TabActive.png.meta | 59 ++++++ .../Background/Dynamic/#TransitionOff.png | Bin 0 -> 1124 bytes .../Dynamic/#TransitionOff.png.meta | 59 ++++++ .../Background/Dynamic/#TransitionOn.png | Bin 0 -> 1147 bytes .../Background/Dynamic/#TransitionOn.png.meta | 59 ++++++ .../Background/Sideline-Highlight.png | Bin 0 -> 1018 bytes .../Background/Sideline-Highlight.png.meta | 59 ++++++ .../Simplicity/Background/TabActive.png | Bin 0 -> 1007 bytes .../Simplicity/Background/TabActive.png.meta | 59 ++++++ .../Simplicity/Background/TransitionOff.png | Bin 0 -> 1124 bytes .../Background/TransitionOff.png.meta | 59 ++++++ .../Simplicity/Background/TransitionOn.png | Bin 0 -> 1147 bytes .../Background/TransitionOn.png.meta | 59 ++++++ Themes/Skinsets/Simplicity/Simplicity.guiskin | 180 ++++++++---------- 36 files changed, 709 insertions(+), 142 deletions(-) create mode 100644 Themes/Skinsets/Simplicity/Background/ColorHighlight50.png create mode 100644 Themes/Skinsets/Simplicity/Background/ColorHighlight50.png.meta create mode 100644 Themes/Skinsets/Simplicity/Background/Dynamic/#ColorHighlight50.png create mode 100644 Themes/Skinsets/Simplicity/Background/Dynamic/#ColorHighlight50.png.meta create mode 100644 Themes/Skinsets/Simplicity/Background/Dynamic/#Sideline-Highlight.png create mode 100644 Themes/Skinsets/Simplicity/Background/Dynamic/#Sideline-Highlight.png.meta create mode 100644 Themes/Skinsets/Simplicity/Background/Dynamic/#TabActive.png create mode 100644 Themes/Skinsets/Simplicity/Background/Dynamic/#TabActive.png.meta create mode 100644 Themes/Skinsets/Simplicity/Background/Dynamic/#TransitionOff.png create mode 100644 Themes/Skinsets/Simplicity/Background/Dynamic/#TransitionOff.png.meta create mode 100644 Themes/Skinsets/Simplicity/Background/Dynamic/#TransitionOn.png create mode 100644 Themes/Skinsets/Simplicity/Background/Dynamic/#TransitionOn.png.meta create mode 100644 Themes/Skinsets/Simplicity/Background/Sideline-Highlight.png create mode 100644 Themes/Skinsets/Simplicity/Background/Sideline-Highlight.png.meta create mode 100644 Themes/Skinsets/Simplicity/Background/TabActive.png create mode 100644 Themes/Skinsets/Simplicity/Background/TabActive.png.meta create mode 100644 Themes/Skinsets/Simplicity/Background/TransitionOff.png create mode 100644 Themes/Skinsets/Simplicity/Background/TransitionOff.png.meta create mode 100644 Themes/Skinsets/Simplicity/Background/TransitionOn.png create mode 100644 Themes/Skinsets/Simplicity/Background/TransitionOn.png.meta diff --git a/Codebase/Systems/Interface/Themes/Editor/ThemeSkinset.cs b/Codebase/Systems/Interface/Themes/Editor/ThemeSkinset.cs index cf04b23d8..ee033ae20 100644 --- a/Codebase/Systems/Interface/Themes/Editor/ThemeSkinset.cs +++ b/Codebase/Systems/Interface/Themes/Editor/ThemeSkinset.cs @@ -100,9 +100,6 @@ public void ApplyMain(Theme theme){ Utility.GetUnityType("SceneRenderModeWindow.Styles").SetVariable("sSeparator",skin.Get("sv_iconselector_sep")); Utility.GetUnityType("GameView.Styles").SetVariable("gizmoButtonStyle",skin.Get("GV Gizmo DropDown")); typeof(SceneView).SetVariable("s_DropDownStyle",skin.Get("GV Gizmo DropDown")); - var console = Utility.GetUnityType("ConsoleWindow.Constants"); - console.SetVariable("ms_Loaded",false); - console.CallMethod("Init"); var hostView = Utility.GetUnityType("HostView"); if(palette.Has("Cursor")){skin.settings.cursorColor = palette.Get("Cursor");} if(palette.Has("Selection")){skin.settings.selectionColor = palette.Get("Selection");} diff --git a/Codebase/Systems/Interface/Themes/Editor/ThemeSystem.cs b/Codebase/Systems/Interface/Themes/Editor/ThemeSystem.cs index b48299b31..6332cda41 100644 --- a/Codebase/Systems/Interface/Themes/Editor/ThemeSystem.cs +++ b/Codebase/Systems/Interface/Themes/Editor/ThemeSystem.cs @@ -15,7 +15,7 @@ public enum HoverResponse{None=1,Slow,Moderate,Instant}; [InitializeOnLoad][NotSerialized] public partial class Theme{ public static Theme active; - public static string revision = "3 [r514]"; + public static string revision = "3 [r518]"; public static int themeIndex; public static int paletteIndex; public static int fontsetIndex; diff --git a/Themes/Palettes/Basic/Silversky.unitypalette b/Themes/Palettes/Basic/Silversky.unitypalette index c8cfc2179..87f27acfc 100644 --- a/Themes/Palettes/Basic/Silversky.unitypalette +++ b/Themes/Palettes/Basic/Silversky.unitypalette @@ -6,7 +6,7 @@ MainIcons : #818181 Border : #C4C6CC BorderActive : #818181 - BorderButton : #81818115 + BorderButton : #C4C6CC BorderIcons : #81818166 Highlight : #D0D3DB HighlightActive : #818181 diff --git a/Themes/Palettes/Themed/3.11.unitypalette b/Themes/Palettes/Themed/3.11.unitypalette index 1796d68d8..73c7e7005 100644 --- a/Themes/Palettes/Themed/3.11.unitypalette +++ b/Themes/Palettes/Themed/3.11.unitypalette @@ -6,7 +6,7 @@ MainIcons : #000080 Border : #C0C0C0 BorderActive : #000080 - BorderButton : #FFFFFF00 + BorderButton : #C0C0C0 BorderIcons : #000000BE Highlight : #C0C0C0 HighlightActive : #000080 @@ -31,10 +31,10 @@ TextError : #B32727 TextHeader : #000000 (Other) - Frame : #FFFFFF : TextBorderActive : 0.4 + Frame : #666666 : TextBorderActive : 0.4 Window : #FFFFFF : Main Details : #C0C0C0 : Border Cursor : #C0C0C0 : Highlight - Selection : #C0C0C0 : MainButton : 0.5 - Curve : #C0C0C0 : Highlight : 1.5 - CurveBackground : #C0C0C0 : Border : 0.5 + Selection : #606060 : MainButton : 0.5 + Curve : #FFFFFF : Highlight : 1.5 + CurveBackground : #606060 : Border : 0.5 diff --git a/Themes/Palettes/Themed/Alien.unitypalette b/Themes/Palettes/Themed/Alien.unitypalette index 22d40fec6..7518c08d4 100644 --- a/Themes/Palettes/Themed/Alien.unitypalette +++ b/Themes/Palettes/Themed/Alien.unitypalette @@ -6,7 +6,7 @@ MainIcons : #00C0FF Border : #D3D6DD BorderActive : #00C0FF - BorderButton : #C0BFC4 + BorderButton : #D3D6DD : Border BorderIcons : #313237 Highlight : #121315 HighlightActive : #313237 @@ -36,5 +36,5 @@ Details : #4E4E4E65 : Header Cursor : #121315 : Highlight Selection : #D3D6DD : Border - Curve : #121315 : Highlight : 1.5 - CurveBackground : #D3D6DD : Border : 0.5 + Curve : #1B1C1F : Highlight : 1.5 + CurveBackground : #696B6E : Border : 0.5 diff --git a/Themes/Palettes/Themed/Amped.unitypalette b/Themes/Palettes/Themed/Amped.unitypalette index 17fa573da..a59e6a328 100644 --- a/Themes/Palettes/Themed/Amped.unitypalette +++ b/Themes/Palettes/Themed/Amped.unitypalette @@ -6,7 +6,7 @@ MainIcons : #C8B383 Border : #2A2A3F BorderActive : #161622 - BorderButton : #00D91300 + BorderButton : #2A2A3F : Border BorderIcons : #FFFFFFA0 Highlight : #555577 HighlightActive : #000080 @@ -35,6 +35,6 @@ Window : #131314 : Main Details : #2A2A3F : Border Cursor : #C8B383 : MainIcons - Selection : #C8B383 : MainIcons : 0.5 - Curve : #555577 : Highlight : 1.5 - CurveBackground : #2A2A3F : Border : 0.5 + Selection : #645941 : MainIcons : 0.5 + Curve : #7F7FB2 : Highlight : 1.5 + CurveBackground : #15151F : Border : 0.5 diff --git a/Themes/Palettes/Themed/Beaches.unitypalette b/Themes/Palettes/Themed/Beaches.unitypalette index 41dc33890..5195fe1f9 100644 --- a/Themes/Palettes/Themed/Beaches.unitypalette +++ b/Themes/Palettes/Themed/Beaches.unitypalette @@ -6,7 +6,7 @@ MainIcons : #C43131 Border : #A7DBD8 BorderActive : #C43131 - BorderButton : #FFFFFF00 + BorderButton : #FFFFFF4E BorderIcons : #00000083 Highlight : #5EBCCF HighlightActive : #C43131 @@ -35,6 +35,6 @@ Window : #E0E4CC : Main Details : #A7DBD8 : Border Cursor : #5EBCCF : Highlight - Selection : #5EBCCF : Highlight : 0.5 - Curve : #5EBCCF : Highlight : 1.5 - CurveBackground : #A7DBD8 : Border : 0.5 + Selection : #2F5E67 : Highlight : 0.5 + Curve : #8DFFFF : Highlight : 1.5 + CurveBackground : #536D6C : Border : 0.5 diff --git a/Themes/Palettes/Themed/Lisa.unitypalette b/Themes/Palettes/Themed/Lisa.unitypalette index 499b95e3c..e2316bd72 100644 --- a/Themes/Palettes/Themed/Lisa.unitypalette +++ b/Themes/Palettes/Themed/Lisa.unitypalette @@ -6,7 +6,7 @@ MainIcons : #FFFB00 Border : #DA4F93 BorderActive : #A5E430 - BorderButton : #EA86C16A + BorderButton : #DA4F93 : Border BorderIcons : #FEFC5D Highlight : #FEFC5D HighlightActive : #E56A31 @@ -34,7 +34,7 @@ Frame : #A5E430 : BorderActive Window : #1F96CA : Main Details : #DA4F93 : Border - Cursor : #FEFC5D : Highlight : 0 - Selection : #E56A31 : HighlightActive : 0.5 - Curve : #FEFC5D : Highlight : 1.5 - CurveBackground : #DA4F93 : Border : 0.5 + Cursor : #000000 : Highlight : 0 + Selection : #723518 : HighlightActive : 0.5 + Curve : #FFFF8B : Highlight : 1.5 + CurveBackground : #6D2749 : Border : 0.5 diff --git a/Themes/Palettes/Themed/Scream.unitypalette b/Themes/Palettes/Themed/Scream.unitypalette index c6d58f294..bb2c5ad18 100644 --- a/Themes/Palettes/Themed/Scream.unitypalette +++ b/Themes/Palettes/Themed/Scream.unitypalette @@ -6,7 +6,7 @@ MainIcons : #FFFFFF Border : #A49054 BorderActive : #000000 - BorderButton : #6C5B3200 + BorderButton : #A49054 : Border BorderIcons : #FFFFFF60 Highlight : #FCDC84 HighlightActive : #000000 @@ -35,6 +35,6 @@ Window : #494038 : Main Details : #A49054 : Border Cursor : #FCDC84 : Highlight - Selection : #FCDC84 : Highlight : 0.5 - Curve : #FCDC84 : Highlight : 1.5 - CurveBackground : #A49054 : Border : 0.5 + Selection : #7E6E42 : Highlight : 0.5 + Curve : #FFFFC6 : Highlight : 1.5 + CurveBackground : #52482A : Border : 0.5 diff --git a/Themes/Palettes/Themed/SuperN.unitypalette b/Themes/Palettes/Themed/SuperN.unitypalette index 158eb3cd4..cf4a3577b 100644 --- a/Themes/Palettes/Themed/SuperN.unitypalette +++ b/Themes/Palettes/Themed/SuperN.unitypalette @@ -6,7 +6,7 @@ MainIcons : #55338D Border : #CDCCD1 BorderActive : #805AB6 - BorderButton : #C0BFC4 + BorderButton : #CDCCD1 : Border BorderIcons : #805AB6 Highlight : #805AB6 HighlightActive : #727276 @@ -35,6 +35,6 @@ Window : #C0BFC0 : Main Details : #CDCCD1 : Border Cursor : #805AB6 : Highlight - Selection : #805AB6 : Highlight : 0.5 - Curve : #805AB6 : Highlight : 1.5 - CurveBackground : #CDCCD1 : Border : 0.5 + Selection : #402D5B : Highlight : 0.5 + Curve : #C087FF : Highlight : 1.5 + CurveBackground : #666668 : Border : 0.5 diff --git a/Themes/Palettes/Themed/SymbOS.unitypalette b/Themes/Palettes/Themed/SymbOS.unitypalette index 15d9eff04..28f1e0525 100644 --- a/Themes/Palettes/Themed/SymbOS.unitypalette +++ b/Themes/Palettes/Themed/SymbOS.unitypalette @@ -6,7 +6,7 @@ MainIcons : #630100 Border : #630100 BorderActive : #000000 - BorderButton : #F7F76300 + BorderButton : #630100 : Border BorderIcons : #F7F763E1 Highlight : #B36100 HighlightActive : #000000 @@ -36,5 +36,5 @@ Details : #FFFFFF37 : Header Cursor : #B36100 : Highlight Selection : #B36100 : Highlight - Curve : #B36100 : Highlight : 1.5 - CurveBackground : #630100 : Border : 0.5 + Curve : #FF9100 : Highlight : 1.5 + CurveBackground : #310000 : Border : 0.5 diff --git a/Themes/Palettes/Themed/Terminal.unitypalette b/Themes/Palettes/Themed/Terminal.unitypalette index 9f4dd392d..52ddbc8ce 100644 --- a/Themes/Palettes/Themed/Terminal.unitypalette +++ b/Themes/Palettes/Themed/Terminal.unitypalette @@ -6,7 +6,7 @@ MainIcons : #00FF16 Border : #000000 BorderActive : #00FF16 - BorderButton : #00D91300 + BorderButton : #00D91338 BorderIcons : #00FF16 Highlight : #003A05 HighlightActive : #00FF16 @@ -36,5 +36,5 @@ Details : #000000 : Border Cursor : #003A05 : Highlight Selection : #FFFF00 : TextWarning - Curve : #003A05 : Highlight : 1.5 + Curve : #005707 : Highlight : 1.5 CurveBackground : #000000 : Border : 0.5 diff --git a/Themes/Palettes/Themed/XP.unitypalette b/Themes/Palettes/Themed/XP.unitypalette index 2bed85878..01c089a23 100644 --- a/Themes/Palettes/Themed/XP.unitypalette +++ b/Themes/Palettes/Themed/XP.unitypalette @@ -6,7 +6,7 @@ MainIcons : #094A9F Border : #1869D3 BorderActive : #198E19 - BorderButton : #FFFFFF00 + BorderButton : #1869D3 : Border BorderIcons : #FFFFFF83 Highlight : #EFEDDF HighlightActive : #198E19 diff --git a/Themes/Palettes/Themed/Zest.unitypalette b/Themes/Palettes/Themed/Zest.unitypalette index 38df70ff6..4a50652fe 100644 --- a/Themes/Palettes/Themed/Zest.unitypalette +++ b/Themes/Palettes/Themed/Zest.unitypalette @@ -6,7 +6,7 @@ MainIcons : #FFFFFF Border : #259073 BorderActive : #000000 - BorderButton : #FFFFFF1B + BorderButton : #259073 : Border BorderIcons : #FFFFFF60 Highlight : #7FDA89 HighlightActive : #000000 diff --git a/Themes/Simplicity.unitytheme b/Themes/Simplicity.unitytheme index d811d8268..65960dabd 100644 --- a/Themes/Simplicity.unitytheme +++ b/Themes/Simplicity.unitytheme @@ -2,6 +2,6 @@ CustomizablePalette = True CustomizableFontset = True CustomizableIconset = True Palette = Zone -Fontset = 8bitOperator +Fontset = Operator Iconset = Simplicity Skinset = Simplicity \ No newline at end of file diff --git a/Themes/Skinsets/Simplicity/Background/ColorHighlight50.png b/Themes/Skinsets/Simplicity/Background/ColorHighlight50.png new file mode 100644 index 0000000000000000000000000000000000000000..ffd88cf01aa86ae47fef0b52463cafffbd2a476f GIT binary patch literal 1008 zcmaJ=O>dMy7^XI9Op_)a)r%v&XyO9H!myC86&SFaxV3IK=^o3%Y?rh!2ve6f(O7TB zga5-A|A2>j@Z!hKPZ$`Iy*O=)zdoLdAdcGNj^0(enM=m;#&J%zk2m|_@qTDV;`)8C zR$81OAuIr8a*!5Q*%qg~7T;ILvIwRsY`-m@J2mKT0hi_k=u)#0Di8vMB&g{K!Fxbe zpeif;MGdG~ITvP3W z^~gUr=4u!Hqm0NsQqaRZ)?l8y%MDeE+#Bn09`m9E2bhM32}xN8w?%#g?S#h7Nm-A3TfPMk(`QrxY|a~>@wdHjq- zeohlG&94>Dv2SBnbv(`0pl)~w!j=jhn@gsKRcxxhIKxKsa@K6Bifj5B=0F~|e literal 0 HcmV?d00001 diff --git a/Themes/Skinsets/Simplicity/Background/ColorHighlight50.png.meta b/Themes/Skinsets/Simplicity/Background/ColorHighlight50.png.meta new file mode 100644 index 000000000..12c70e902 --- /dev/null +++ b/Themes/Skinsets/Simplicity/Background/ColorHighlight50.png.meta @@ -0,0 +1,59 @@ +fileFormatVersion: 2 +guid: 5c456d09845c57f45ab8e1c387846b8a +timeCreated: 1470143587 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 1 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: 4 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + 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 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 5 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Themes/Skinsets/Simplicity/Background/Dynamic/#ColorHighlight50.png b/Themes/Skinsets/Simplicity/Background/Dynamic/#ColorHighlight50.png new file mode 100644 index 0000000000000000000000000000000000000000..ffd88cf01aa86ae47fef0b52463cafffbd2a476f GIT binary patch literal 1008 zcmaJ=O>dMy7^XI9Op_)a)r%v&XyO9H!myC86&SFaxV3IK=^o3%Y?rh!2ve6f(O7TB zga5-A|A2>j@Z!hKPZ$`Iy*O=)zdoLdAdcGNj^0(enM=m;#&J%zk2m|_@qTDV;`)8C zR$81OAuIr8a*!5Q*%qg~7T;ILvIwRsY`-m@J2mKT0hi_k=u)#0Di8vMB&g{K!Fxbe zpeif;MGdG~ITvP3W z^~gUr=4u!Hqm0NsQqaRZ)?l8y%MDeE+#Bn09`m9E2bhM32}xN8w?%#g?S#h7Nm-A3TfPMk(`QrxY|a~>@wdHjq- zeohlG&94>Dv2SBnbv(`0pl)~w!j=jhn@gsKRcxxhIKxKsa@K6Bifj5B=0F~|e literal 0 HcmV?d00001 diff --git a/Themes/Skinsets/Simplicity/Background/Dynamic/#ColorHighlight50.png.meta b/Themes/Skinsets/Simplicity/Background/Dynamic/#ColorHighlight50.png.meta new file mode 100644 index 000000000..1d018ad96 --- /dev/null +++ b/Themes/Skinsets/Simplicity/Background/Dynamic/#ColorHighlight50.png.meta @@ -0,0 +1,59 @@ +fileFormatVersion: 2 +guid: 9655813b1e7604c44883ea3ed5595ef9 +timeCreated: 1470143587 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 1 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: 4 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + 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 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 5 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Themes/Skinsets/Simplicity/Background/Dynamic/#Sideline-Highlight.png b/Themes/Skinsets/Simplicity/Background/Dynamic/#Sideline-Highlight.png new file mode 100644 index 0000000000000000000000000000000000000000..132e21f943622218384138b6582c7ffeb0e5ce05 GIT binary patch literal 15391 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 literal 0 HcmV?d00001 diff --git a/Themes/Skinsets/Simplicity/Background/Dynamic/#TransitionOff.png.meta b/Themes/Skinsets/Simplicity/Background/Dynamic/#TransitionOff.png.meta new file mode 100644 index 000000000..65c6bd91b --- /dev/null +++ b/Themes/Skinsets/Simplicity/Background/Dynamic/#TransitionOff.png.meta @@ -0,0 +1,59 @@ +fileFormatVersion: 2 +guid: fecd6c3d8bb5b54438fd610f0da1b17e +timeCreated: 1470143587 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 1 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: 4 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + 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 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 5 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Themes/Skinsets/Simplicity/Background/Dynamic/#TransitionOn.png b/Themes/Skinsets/Simplicity/Background/Dynamic/#TransitionOn.png new file mode 100644 index 0000000000000000000000000000000000000000..4fadcd61dfe5a77eeef54de91879a8f7589ce8a0 GIT binary patch literal 1147 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 literal 0 HcmV?d00001 diff --git a/Themes/Skinsets/Simplicity/Background/TransitionOff.png.meta b/Themes/Skinsets/Simplicity/Background/TransitionOff.png.meta new file mode 100644 index 000000000..c38e91ddc --- /dev/null +++ b/Themes/Skinsets/Simplicity/Background/TransitionOff.png.meta @@ -0,0 +1,59 @@ +fileFormatVersion: 2 +guid: 446ed7c7a85de104f9ca85d3c250af4e +timeCreated: 1470143587 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 1 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: 4 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + 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 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 5 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Themes/Skinsets/Simplicity/Background/TransitionOn.png b/Themes/Skinsets/Simplicity/Background/TransitionOn.png new file mode 100644 index 0000000000000000000000000000000000000000..4fadcd61dfe5a77eeef54de91879a8f7589ce8a0 GIT binary patch literal 1147 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz$r9IylHmNblJdl&R0hYC{G?O` z&)mfH)S%SFl*+=BsWuD@%u1Od5hW46K32*3xq68pHF_1f1wh>l3^w)^1&PVosU-?Y zsp*+{wo31J?^jaDOtDo8H}y5}EpSfF$n>ZxN)4{^3rViZPPR-@vbR&PsjvbXkegbP zs8ErclUHn2VXFi-*9yo63F|81#=KlDb#X~hD#E>34K5C;EJ)Q4 zN-fSWElLJPT$(b-ssbzLqSVBa{GyQj{2W*)24v)yrG;}qyG_Wvsb}}$9ce6Az zb2T=F>2=9ZF3nBND}m`vLFhHZsTY(KatnYqyQCInmZhe+73JqDfW2&$iQ6s4IL(9V zO~LIJ6P$YWfsWA!MJ!T8!-RmT2gHOYTObFX@Kf`Esl5o8tW#o~jsdg8drud~kcwMJ zuDJ6ZG7xA@OrOH5o_w?`Td0cDd_no4T#mX)x~@}1jKBT4q~SH$&Qdk&Y2~UZS=tLd z&U>8?5?a8cG?it+R+grF-x?!4m@cTPG}XzlC+TrI+!o+iWx;>MN2sB!YS|=)E#F%g zuw7>|oXE0(*}O^S9b?iN)(+YC*0XZm{Y9!+yExXk=&?F1uNOS>L84J&r&7nuSgYMi z9Ur@yl5U7Np7}r3JDA1%fD&7&pdG`DDDj8f34(vMTKpMyz4SaKu#fRYTpI`DhK_sY zE*cD{cpho8Zs=Ij!NL2(;fU9=Gkf@BgNkf72