diff --git a/UnityUIExtensions-5.2.unitypackage.meta b/Scripts/Effects/Shaders.meta similarity index 58% rename from UnityUIExtensions-5.2.unitypackage.meta rename to Scripts/Effects/Shaders.meta index 63b31ea..580af05 100644 --- a/UnityUIExtensions-5.2.unitypackage.meta +++ b/Scripts/Effects/Shaders.meta @@ -1,6 +1,7 @@ fileFormatVersion: 2 -guid: 8b7285bc9bf2dec45ba8f2e25a902dde -timeCreated: 1441912030 +guid: 4ffce0a0f2470334a86c8a629cd70ade +folderAsset: yes +timeCreated: 1464635784 licenseType: Pro DefaultImporter: userData: diff --git a/Scripts/Effects/Shaders/UIAdditiveEffect.cs b/Scripts/Effects/Shaders/UIAdditiveEffect.cs new file mode 100644 index 0000000..1263c88 --- /dev/null +++ b/Scripts/Effects/Shaders/UIAdditiveEffect.cs @@ -0,0 +1,43 @@ +/// Credit 00christian00 +/// Sourced from - http://forum.unity3d.com/threads/any-way-to-show-part-of-an-image-without-using-mask.360085/#post-2332030 + + +namespace UnityEngine.UI.Extensions +{ + [AddComponentMenu("UI/Effects/Extensions/UIAdditiveEffect")] + [ExecuteInEditMode] + [RequireComponent(typeof(RectTransform))] + public class UIAdditiveEffect : MonoBehaviour + { + MaskableGraphic mGraphic; + Material mat; + + // Use this for initialization + void Start() + { + SetMaterial(); + } + + public void SetMaterial() + { + mGraphic = this.GetComponent(); + if (mGraphic != null) + { + if (mGraphic.material == null || mGraphic.material.name == "Default UI Material") + { + //Applying default material with UI Image Crop shader + mGraphic.material = new Material(Shader.Find("UI Extensions/UIAdditive")); + } + mat = mGraphic.material; + } + else + { + Debug.LogError("Please attach component to a Graphical UI component"); + } + } + public void OnValidate() + { + SetMaterial(); + } + } +} \ No newline at end of file diff --git a/Scripts/Effects/Shaders/UIAdditiveEffect.cs.meta b/Scripts/Effects/Shaders/UIAdditiveEffect.cs.meta new file mode 100644 index 0000000..8920a6c --- /dev/null +++ b/Scripts/Effects/Shaders/UIAdditiveEffect.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7a29c8587a101744ea9e6198d89cb2df +timeCreated: 1464643709 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Scripts/Effects/UIImageCrop.cs b/Scripts/Effects/Shaders/UIImageCrop.cs similarity index 100% rename from Scripts/Effects/UIImageCrop.cs rename to Scripts/Effects/Shaders/UIImageCrop.cs diff --git a/Scripts/Effects/UIImageCrop.cs.meta b/Scripts/Effects/Shaders/UIImageCrop.cs.meta similarity index 100% rename from Scripts/Effects/UIImageCrop.cs.meta rename to Scripts/Effects/Shaders/UIImageCrop.cs.meta diff --git a/Scripts/Effects/Shaders/UILinearDodgeEffect.cs b/Scripts/Effects/Shaders/UILinearDodgeEffect.cs new file mode 100644 index 0000000..1d37ed9 --- /dev/null +++ b/Scripts/Effects/Shaders/UILinearDodgeEffect.cs @@ -0,0 +1,43 @@ +/// Credit 00christian00 +/// Sourced from - http://forum.unity3d.com/threads/any-way-to-show-part-of-an-image-without-using-mask.360085/#post-2332030 + + +namespace UnityEngine.UI.Extensions +{ + [AddComponentMenu("UI/Effects/Extensions/UILinearDodgeEffect")] + [ExecuteInEditMode] + [RequireComponent(typeof(RectTransform))] + public class UILinearDodgeEffect : MonoBehaviour + { + MaskableGraphic mGraphic; + Material mat; + + // Use this for initialization + void Start() + { + SetMaterial(); + } + + public void SetMaterial() + { + mGraphic = this.GetComponent(); + if (mGraphic != null) + { + if (mGraphic.material == null || mGraphic.material.name == "Default UI Material") + { + //Applying default material with UI Image Crop shader + mGraphic.material = new Material(Shader.Find("UI Extensions/UILinearDodge")); + } + mat = mGraphic.material; + } + else + { + Debug.LogError("Please attach component to a Graphical UI component"); + } + } + public void OnValidate() + { + SetMaterial(); + } + } +} \ No newline at end of file diff --git a/Scripts/Effects/Shaders/UILinearDodgeEffect.cs.meta b/Scripts/Effects/Shaders/UILinearDodgeEffect.cs.meta new file mode 100644 index 0000000..18cb498 --- /dev/null +++ b/Scripts/Effects/Shaders/UILinearDodgeEffect.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b4fbdc2185cba1c42ad07e43eea19561 +timeCreated: 1464643896 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Scripts/Effects/Shaders/UIMultiplyEffect.cs b/Scripts/Effects/Shaders/UIMultiplyEffect.cs new file mode 100644 index 0000000..c8a9f6c --- /dev/null +++ b/Scripts/Effects/Shaders/UIMultiplyEffect.cs @@ -0,0 +1,43 @@ +/// Credit 00christian00 +/// Sourced from - http://forum.unity3d.com/threads/any-way-to-show-part-of-an-image-without-using-mask.360085/#post-2332030 + + +namespace UnityEngine.UI.Extensions +{ + [AddComponentMenu("UI/Effects/Extensions/UIMultiplyEffect")] + [ExecuteInEditMode] + [RequireComponent(typeof(RectTransform))] + public class UIMultiplyEffect : MonoBehaviour + { + MaskableGraphic mGraphic; + Material mat; + + // Use this for initialization + void Start() + { + SetMaterial(); + } + + public void SetMaterial() + { + mGraphic = this.GetComponent(); + if (mGraphic != null) + { + if (mGraphic.material == null || mGraphic.material.name == "Default UI Material") + { + //Applying default material with UI Image Crop shader + mGraphic.material = new Material(Shader.Find("UI Extensions/UIMultiply")); + } + mat = mGraphic.material; + } + else + { + Debug.LogError("Please attach component to a Graphical UI component"); + } + } + public void OnValidate() + { + SetMaterial(); + } + } +} \ No newline at end of file diff --git a/Scripts/Effects/Shaders/UIMultiplyEffect.cs.meta b/Scripts/Effects/Shaders/UIMultiplyEffect.cs.meta new file mode 100644 index 0000000..14140e8 --- /dev/null +++ b/Scripts/Effects/Shaders/UIMultiplyEffect.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3a1216dfb98544e44afb7fb3abc093f2 +timeCreated: 1464643921 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Scripts/Effects/Shaders/UIScreenEffect.cs b/Scripts/Effects/Shaders/UIScreenEffect.cs new file mode 100644 index 0000000..5bc1bb9 --- /dev/null +++ b/Scripts/Effects/Shaders/UIScreenEffect.cs @@ -0,0 +1,43 @@ +/// Credit 00christian00 +/// Sourced from - http://forum.unity3d.com/threads/any-way-to-show-part-of-an-image-without-using-mask.360085/#post-2332030 + + +namespace UnityEngine.UI.Extensions +{ + [AddComponentMenu("UI/Effects/Extensions/UIScreenEffect")] + [ExecuteInEditMode] + [RequireComponent(typeof(RectTransform))] + public class UIScreenEffect : MonoBehaviour + { + MaskableGraphic mGraphic; + Material mat; + + // Use this for initialization + void Start() + { + SetMaterial(); + } + + public void SetMaterial() + { + mGraphic = this.GetComponent(); + if (mGraphic != null) + { + if (mGraphic.material == null || mGraphic.material.name == "Default UI Material") + { + //Applying default material with UI Image Crop shader + mGraphic.material = new Material(Shader.Find("UI Extensions/UIScreen")); + } + mat = mGraphic.material; + } + else + { + Debug.LogError("Please attach component to a Graphical UI component"); + } + } + public void OnValidate() + { + SetMaterial(); + } + } +} \ No newline at end of file diff --git a/Scripts/Effects/Shaders/UIScreenEffect.cs.meta b/Scripts/Effects/Shaders/UIScreenEffect.cs.meta new file mode 100644 index 0000000..dd8a2b6 --- /dev/null +++ b/Scripts/Effects/Shaders/UIScreenEffect.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 07afba72913387d488019cbb35ec1965 +timeCreated: 1464643319 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Scripts/Effects/Shaders/UISoftAdditiveEffect.cs b/Scripts/Effects/Shaders/UISoftAdditiveEffect.cs new file mode 100644 index 0000000..b69f00b --- /dev/null +++ b/Scripts/Effects/Shaders/UISoftAdditiveEffect.cs @@ -0,0 +1,43 @@ +/// Credit 00christian00 +/// Sourced from - http://forum.unity3d.com/threads/any-way-to-show-part-of-an-image-without-using-mask.360085/#post-2332030 + + +namespace UnityEngine.UI.Extensions +{ + [AddComponentMenu("UI/Effects/Extensions/UISoftAdditiveEffect")] + [ExecuteInEditMode] + [RequireComponent(typeof(RectTransform))] + public class UISoftAdditiveEffect : MonoBehaviour + { + MaskableGraphic mGraphic; + Material mat; + + // Use this for initialization + void Start() + { + SetMaterial(); + } + + public void SetMaterial() + { + mGraphic = this.GetComponent(); + if (mGraphic != null) + { + if (mGraphic.material == null || mGraphic.material.name == "Default UI Material") + { + //Applying default material with UI Image Crop shader + mGraphic.material = new Material(Shader.Find("UI Extensions/UISoftAdditive")); + } + mat = mGraphic.material; + } + else + { + Debug.LogError("Please attach component to a Graphical UI component"); + } + } + public void OnValidate() + { + SetMaterial(); + } + } +} \ No newline at end of file diff --git a/Scripts/Effects/Shaders/UISoftAdditiveEffect.cs.meta b/Scripts/Effects/Shaders/UISoftAdditiveEffect.cs.meta new file mode 100644 index 0000000..a53f683 --- /dev/null +++ b/Scripts/Effects/Shaders/UISoftAdditiveEffect.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 692867a1eddc7df419ec15b05b4084ec +timeCreated: 1464643947 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Scripts/Effects/UIParticleSystem.cs b/Scripts/Effects/UIParticleSystem.cs index 9b8a7e6..fd52a48 100644 --- a/Scripts/Effects/UIParticleSystem.cs +++ b/Scripts/Effects/UIParticleSystem.cs @@ -1,5 +1,6 @@ /// Credit glennpow /// Sourced from - http://forum.unity3d.com/threads/free-script-particle-systems-in-ui-screen-space-overlay.406862/ +/// *Note - experimental. Currently renders in scene view and not game view. namespace UnityEngine.UI.Extensions { diff --git a/Scripts/Utilities/ScrollConflictManager.cs b/Scripts/Utilities/ScrollConflictManager.cs index 2430aea..c253c09 100644 --- a/Scripts/Utilities/ScrollConflictManager.cs +++ b/Scripts/Utilities/ScrollConflictManager.cs @@ -1,88 +1,88 @@ -using UnityEngine; -using System.Collections; -using UnityEngine.EventSystems; -using UnityEngine.UI; -using System; - - -//this is the most efficient way to handle scroll conflicts when there are multiple scroll rects -//this is useful when there is a vertical scrollrect in/on a horizontal scrollrect or vice versa - -//attach the script to the rect scroll and assign other rectscroll in the inspecter (one is verticle and other is horizontal) -//gathered and modified from unity answers(delta snipper) -namespace UnityEngine.UI.Extensions -{ - -[RequireComponent(typeof(ScrollRect))] -public class ScrollConflictManager : MonoBehaviour, IBeginDragHandler, IEndDragHandler, IDragHandler -{ - public ScrollRect OtherScrollRect; - private ScrollRect _myScrollRect; - //This tracks if the other one should be scrolling instead of the current one. - private bool scrollOther; - //This tracks wether the other one should scroll horizontally or vertically. - private bool scrollOtherHorizontally; - - void Awake() - { - //Get the current scroll rect so we can disable it if the other one is scrolling - _myScrollRect = this.GetComponent(); - //If the current scroll Rect has the vertical checked then the other one will be scrolling horizontally. - scrollOtherHorizontally = _myScrollRect.vertical; - //Check some attributes to let the user know if this wont work as expected - if (scrollOtherHorizontally) - { - if (_myScrollRect.horizontal) - Debug.Log("You have added the SecondScrollRect to a scroll view that already has both directions selected"); - if (!OtherScrollRect.horizontal) - Debug.Log("The other scroll rect doesnt support scrolling horizontally"); - } - else if (!OtherScrollRect.vertical) - { - Debug.Log("The other scroll rect doesnt support scrolling vertically"); - } - } - //IBeginDragHandler - public void OnBeginDrag(PointerEventData eventData) - { - //Get the absolute values of the x and y differences so we can see which one is bigger and scroll the other scroll rect accordingly - float horizontal = Mathf.Abs(eventData.position.x - eventData.pressPosition.x); - float vertical = Mathf.Abs(eventData.position.y - eventData.pressPosition.y); - if (scrollOtherHorizontally) - { - if (horizontal > vertical) - { - scrollOther = true; - //disable the current scroll rect so it doesnt move. - _myScrollRect.enabled = false; - OtherScrollRect.OnBeginDrag(eventData); - } - } - else if (vertical > horizontal) - { - scrollOther = true; - //disable the current scroll rect so it doesnt move. - _myScrollRect.enabled = false; - OtherScrollRect.OnBeginDrag(eventData); - } - } - //IEndDragHandler - public void OnEndDrag(PointerEventData eventData) - { - if (scrollOther) - { - scrollOther = false; - _myScrollRect.enabled = true; - OtherScrollRect.OnEndDrag(eventData); - } - } - //IDragHandler - public void OnDrag(PointerEventData eventData) - { - if (scrollOther) - { - OtherScrollRect.OnDrag(eventData); - } - } -} +/// Credit srinivas sunil +/// sourced from: https://bitbucket.org/ddreaper/unity-ui-extensions/pull-requests/21/develop_53/diff + +using UnityEngine.EventSystems; + +/// +/// This is the most efficient way to handle scroll conflicts when there are multiple scroll rects, this is useful when there is a vertical scrollrect in/on a horizontal scrollrect or vice versa +/// Attach the script to the rect scroll and assign other rectscroll in the inspecter (one is verticle and other is horizontal) gathered and modified from unity answers(delta snipper) +/// +namespace UnityEngine.UI.Extensions +{ + [RequireComponent(typeof(ScrollRect))] + [AddComponentMenu("UI/Extensions/Scrollrect Conflict Manager")] + public class ScrollConflictManager : MonoBehaviour, IBeginDragHandler, IEndDragHandler, IDragHandler + { + public ScrollRect ParentScrollRect; + private ScrollRect _myScrollRect; + //This tracks if the other one should be scrolling instead of the current one. + private bool scrollOther; + //This tracks wether the other one should scroll horizontally or vertically. + private bool scrollOtherHorizontally; + + void Awake() + { + //Get the current scroll rect so we can disable it if the other one is scrolling + _myScrollRect = this.GetComponent(); + //If the current scroll Rect has the vertical checked then the other one will be scrolling horizontally. + scrollOtherHorizontally = _myScrollRect.vertical; + //Check some attributes to let the user know if this wont work as expected + if (scrollOtherHorizontally) + { + if (_myScrollRect.horizontal) + Debug.Log("You have added the SecondScrollRect to a scroll view that already has both directions selected"); + if (!ParentScrollRect.horizontal) + Debug.Log("The other scroll rect doesnt support scrolling horizontally"); + } + else if (!ParentScrollRect.vertical) + { + Debug.Log("The other scroll rect doesnt support scrolling vertically"); + } + } + + //IBeginDragHandler + public void OnBeginDrag(PointerEventData eventData) + { + //Get the absolute values of the x and y differences so we can see which one is bigger and scroll the other scroll rect accordingly + float horizontal = Mathf.Abs(eventData.position.x - eventData.pressPosition.x); + float vertical = Mathf.Abs(eventData.position.y - eventData.pressPosition.y); + if (scrollOtherHorizontally) + { + if (horizontal > vertical) + { + scrollOther = true; + //disable the current scroll rect so it doesnt move. + _myScrollRect.enabled = false; + ParentScrollRect.OnBeginDrag(eventData); + } + } + else if (vertical > horizontal) + { + scrollOther = true; + //disable the current scroll rect so it doesnt move. + _myScrollRect.enabled = false; + ParentScrollRect.OnBeginDrag(eventData); + } + } + + //IEndDragHandler + public void OnEndDrag(PointerEventData eventData) + { + if (scrollOther) + { + scrollOther = false; + _myScrollRect.enabled = true; + ParentScrollRect.OnEndDrag(eventData); + } + } + + //IDragHandler + public void OnDrag(PointerEventData eventData) + { + if (scrollOther) + { + ParentScrollRect.OnDrag(eventData); + } + } + } } \ No newline at end of file diff --git a/Shaders/UIAdditive.shader b/Shaders/UIAdditive.shader new file mode 100644 index 0000000..bd729aa --- /dev/null +++ b/Shaders/UIAdditive.shader @@ -0,0 +1,92 @@ +Shader "UI Extensions/UIAdditive" +{ + Properties + { + [PerRendererData] _MainTex ("Sprite Texture", 2D) = "white" {} + _Color ("Tint", Color) = (1,1,1,1) + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _ColorMask ("Color Mask", Float) = 15 + } + + SubShader + { + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + "PreviewType"="Plane" + "CanUseSpriteAtlas"="True" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull Off + Lighting Off + ZWrite Off + ZTest [unity_GUIZTestMode] + Fog { Mode Off } + Blend One One + ColorMask [_ColorMask] + + Pass + { + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #include "UnityCG.cginc" + + struct appdata_t + { + float4 vertex : POSITION; + float4 color : COLOR; + float2 texcoord : TEXCOORD0; + }; + + struct v2f + { + float4 vertex : SV_POSITION; + fixed4 color : COLOR; + half2 texcoord : TEXCOORD0; + }; + + fixed4 _Color; + + v2f vert(appdata_t IN) + { + v2f OUT; + OUT.vertex = mul(UNITY_MATRIX_MVP, IN.vertex); + OUT.texcoord = IN.texcoord; +#ifdef UNITY_HALF_TEXEL_OFFSET + OUT.vertex.xy += (_ScreenParams.zw-1.0)*float2(-1,1); +#endif + OUT.color = IN.color * _Color; + return OUT; + } + + sampler2D _MainTex; + + fixed4 frag(v2f IN) : SV_Target + { + half4 color = tex2D(_MainTex, IN.texcoord) * IN.color; + color.rgb *= color.a; + clip (color.a - 0.01); + return color; + } + ENDCG + } + } +} diff --git a/Shaders/UIAdditive.shader.meta b/Shaders/UIAdditive.shader.meta new file mode 100644 index 0000000..b11efab --- /dev/null +++ b/Shaders/UIAdditive.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 20fb5fa09d4675a4e94314a228763c23 +timeCreated: 1464629199 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Shaders/UILinearDodge.shader b/Shaders/UILinearDodge.shader new file mode 100644 index 0000000..f73c1ae --- /dev/null +++ b/Shaders/UILinearDodge.shader @@ -0,0 +1,93 @@ +Shader "UI Extensions/UILinearDodge" +{ + Properties + { + [PerRendererData] _MainTex ("Sprite Texture", 2D) = "white" {} + _Color ("Tint", Color) = (1,1,1,1) + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _ColorMask ("Color Mask", Float) = 15 + } + + SubShader + { + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + "PreviewType"="Plane" + "CanUseSpriteAtlas"="True" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull Off + Lighting Off + ZWrite Off + ZTest [unity_GUIZTestMode] + Fog { Mode Off } + BlendOp Add + Blend SrcAlpha One, One Zero + ColorMask [_ColorMask] + + Pass + { + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #include "UnityCG.cginc" + + struct appdata_t + { + float4 vertex : POSITION; + float4 color : COLOR; + float2 texcoord : TEXCOORD0; + }; + + struct v2f + { + float4 vertex : SV_POSITION; + fixed4 color : COLOR; + half2 texcoord : TEXCOORD0; + }; + + fixed4 _Color; + + v2f vert(appdata_t IN) + { + v2f OUT; + OUT.vertex = mul(UNITY_MATRIX_MVP, IN.vertex); + OUT.texcoord = IN.texcoord; +#ifdef UNITY_HALF_TEXEL_OFFSET + OUT.vertex.xy += (_ScreenParams.zw-1.0)*float2(-1,1); +#endif + OUT.color = IN.color * _Color; + return OUT; + } + + sampler2D _MainTex; + + fixed4 frag(v2f IN) : SV_Target + { + half4 color = tex2D(_MainTex, IN.texcoord) * IN.color; + color.rgb *= color.a; + clip (color.a - 0.01); + return color; + } + ENDCG + } + } +} diff --git a/Shaders/UILinearDodge.shader.meta b/Shaders/UILinearDodge.shader.meta new file mode 100644 index 0000000..ac0624f --- /dev/null +++ b/Shaders/UILinearDodge.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: c3c3af59790cf3749ba49fe1c838c94e +timeCreated: 1464629199 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Shaders/UIMultiply.shader b/Shaders/UIMultiply.shader new file mode 100644 index 0000000..099e783 --- /dev/null +++ b/Shaders/UIMultiply.shader @@ -0,0 +1,91 @@ +Shader "UI Extensions/UIMultiply" +{ + Properties + { + [PerRendererData] _MainTex ("Sprite Texture", 2D) = "white" {} + _Color ("Tint", Color) = (1,1,1,1) + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _ColorMask ("Color Mask", Float) = 15 + } + + SubShader + { + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + "PreviewType"="Plane" + "CanUseSpriteAtlas"="True" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull Off + Lighting Off + ZWrite Off + ZTest [unity_GUIZTestMode] + Fog { Mode Off } + Blend DstColor Zero + ColorMask [_ColorMask] + + Pass + { + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #include "UnityCG.cginc" + + struct appdata_t + { + float4 vertex : POSITION; + float4 color : COLOR; + float2 texcoord : TEXCOORD0; + }; + + struct v2f + { + float4 vertex : SV_POSITION; + fixed4 color : COLOR; + half2 texcoord : TEXCOORD0; + }; + + fixed4 _Color; + + v2f vert(appdata_t IN) + { + v2f OUT; + OUT.vertex = mul(UNITY_MATRIX_MVP, IN.vertex); + OUT.texcoord = IN.texcoord; +#ifdef UNITY_HALF_TEXEL_OFFSET + OUT.vertex.xy += (_ScreenParams.zw-1.0)*float2(-1,1); +#endif + OUT.color = IN.color * _Color; + return OUT; + } + + sampler2D _MainTex; + + fixed4 frag(v2f IN) : SV_Target + { + half4 color = tex2D(_MainTex, IN.texcoord) * IN.color; + clip (color.a - 0.01); + return color; + } + ENDCG + } + } +} diff --git a/Shaders/UIMultiply.shader.meta b/Shaders/UIMultiply.shader.meta new file mode 100644 index 0000000..dfd048b --- /dev/null +++ b/Shaders/UIMultiply.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: d287872ca8fd776418c28d332df585c3 +timeCreated: 1464629200 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Shaders/UIParticleHidden.shader b/Shaders/UIParticleHidden.shader new file mode 100644 index 0000000..d271c73 --- /dev/null +++ b/Shaders/UIParticleHidden.shader @@ -0,0 +1,38 @@ +Shader "UI/Particles/Hidden" +{ + Properties + { + } + SubShader + { + Tags { "Queue"="Geometry" "RenderType"="Opaque" } + Cull Off Lighting Off ZWrite Off Fog { Mode Off } + LOD 100 + + Pass + { + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + + struct v2f + { + float4 vertex : SV_POSITION; + }; + + v2f vert () + { + v2f o; + o.vertex = fixed4(0, 0, 0, 0); + return o; + } + + fixed4 frag (v2f i) : SV_Target + { + discard; + return fixed4(0, 0, 0, 0); + } + ENDCG + } + } +} \ No newline at end of file diff --git a/Shaders/UIParticleHidden.shader.meta b/Shaders/UIParticleHidden.shader.meta new file mode 100644 index 0000000..ae44b22 --- /dev/null +++ b/Shaders/UIParticleHidden.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: cf73a0a4b5ea8994f916cd18a97c564b +timeCreated: 1464476220 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Shaders/UIScreen.shader b/Shaders/UIScreen.shader new file mode 100644 index 0000000..038bd1e --- /dev/null +++ b/Shaders/UIScreen.shader @@ -0,0 +1,93 @@ +Shader "UI Extensions/UIScreen" +{ + Properties + { + [PerRendererData] _MainTex ("Sprite Texture", 2D) = "white" {} + _Color ("Tint", Color) = (1,1,1,1) + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _ColorMask ("Color Mask", Float) = 15 + } + + SubShader + { + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + "PreviewType"="Plane" + "CanUseSpriteAtlas"="True" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull Off + Lighting Off + ZWrite Off + ZTest [unity_GUIZTestMode] + Fog { Mode Off } + BlendOp Add + Blend OneMinusDstColor One, One Zero + ColorMask [_ColorMask] + + Pass + { + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #include "UnityCG.cginc" + + struct appdata_t + { + float4 vertex : POSITION; + float4 color : COLOR; + float2 texcoord : TEXCOORD0; + }; + + struct v2f + { + float4 vertex : SV_POSITION; + fixed4 color : COLOR; + half2 texcoord : TEXCOORD0; + }; + + fixed4 _Color; + + v2f vert(appdata_t IN) + { + v2f OUT; + OUT.vertex = mul(UNITY_MATRIX_MVP, IN.vertex); + OUT.texcoord = IN.texcoord; +#ifdef UNITY_HALF_TEXEL_OFFSET + OUT.vertex.xy += (_ScreenParams.zw-1.0)*float2(-1,1); +#endif + OUT.color = IN.color * _Color; + return OUT; + } + + sampler2D _MainTex; + + fixed4 frag(v2f IN) : SV_Target + { + half4 color = tex2D(_MainTex, IN.texcoord) * IN.color; + color.rgb *= color.a; + clip (color.a - 0.01); + return color; + } + ENDCG + } + } +} diff --git a/Shaders/UIScreen.shader.meta b/Shaders/UIScreen.shader.meta new file mode 100644 index 0000000..f410a1b --- /dev/null +++ b/Shaders/UIScreen.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 227ac21f7763c00489cc458e3938e326 +timeCreated: 1464629199 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Shaders/UISoftAdditive.shader b/Shaders/UISoftAdditive.shader new file mode 100644 index 0000000..a5bb004 --- /dev/null +++ b/Shaders/UISoftAdditive.shader @@ -0,0 +1,92 @@ +Shader "UI Extensions/UISoftAdditive" +{ + Properties + { + [PerRendererData] _MainTex ("Sprite Texture", 2D) = "white" {} + _Color ("Tint", Color) = (1,1,1,1) + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _ColorMask ("Color Mask", Float) = 15 + } + + SubShader + { + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + "PreviewType"="Plane" + "CanUseSpriteAtlas"="True" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull Off + Lighting Off + ZWrite Off + ZTest [unity_GUIZTestMode] + Fog { Mode Off } + Blend OneMinusDstColor One + ColorMask [_ColorMask] + + Pass + { + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #include "UnityCG.cginc" + + struct appdata_t + { + float4 vertex : POSITION; + float4 color : COLOR; + float2 texcoord : TEXCOORD0; + }; + + struct v2f + { + float4 vertex : SV_POSITION; + fixed4 color : COLOR; + half2 texcoord : TEXCOORD0; + }; + + fixed4 _Color; + + v2f vert(appdata_t IN) + { + v2f OUT; + OUT.vertex = mul(UNITY_MATRIX_MVP, IN.vertex); + OUT.texcoord = IN.texcoord; +#ifdef UNITY_HALF_TEXEL_OFFSET + OUT.vertex.xy += (_ScreenParams.zw-1.0)*float2(-1,1); +#endif + OUT.color = IN.color * _Color; + return OUT; + } + + sampler2D _MainTex; + + fixed4 frag(v2f IN) : SV_Target + { + half4 color = tex2D(_MainTex, IN.texcoord) * IN.color; + color.rgb *= color.a; + clip (color.a - 0.01); + return color; + } + ENDCG + } + } +} diff --git a/Shaders/UISoftAdditive.shader.meta b/Shaders/UISoftAdditive.shader.meta new file mode 100644 index 0000000..a0d80fd --- /dev/null +++ b/Shaders/UISoftAdditive.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: fb2e16a3d1280334a9e05394e1890f09 +timeCreated: 1464629200 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityUIExtensions-4.x.unitypackage b/UnityUIExtensions-4.x.unitypackage deleted file mode 100644 index 3e4433c..0000000 Binary files a/UnityUIExtensions-4.x.unitypackage and /dev/null differ diff --git a/UnityUIExtensions-4.x.unitypackage.meta b/UnityUIExtensions-4.x.unitypackage.meta deleted file mode 100644 index 31b0d1c..0000000 --- a/UnityUIExtensions-4.x.unitypackage.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 6099846579e92994a8eb58147565e5b6 -timeCreated: 1440889727 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/UnityUIExtensions-5.1.unitypackage b/UnityUIExtensions-5.1.unitypackage deleted file mode 100644 index 8fb3a09..0000000 Binary files a/UnityUIExtensions-5.1.unitypackage and /dev/null differ diff --git a/UnityUIExtensions-5.1.unitypackage.meta b/UnityUIExtensions-5.1.unitypackage.meta deleted file mode 100644 index b2685d1..0000000 --- a/UnityUIExtensions-5.1.unitypackage.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: ba77f83df2a458247a09d6017fed6ec2 -timeCreated: 1440890266 -licenseType: Pro -DefaultImporter: - userData: - assetBundleName: - assetBundleVariant: diff --git a/UnityUIExtensions-5.2.unitypackage b/UnityUIExtensions-5.2.unitypackage deleted file mode 100644 index d4bfa9e..0000000 Binary files a/UnityUIExtensions-5.2.unitypackage and /dev/null differ