feat: raycast filter is now optional feature

Close #73
vr
mob-sakai 2020-05-01 01:49:54 +09:00
parent 187ad40b73
commit 3b427274c9
2 changed files with 19 additions and 4 deletions

6
Packages/SoftMaskForUGUI/Scripts/SoftMask.cs Executable file → Normal file
View File

@ -262,8 +262,8 @@ namespace Coffee.UIExtensions
int x = (int)((softMaskBuffer.width - 1) * Mathf.Clamp01(sp.x / Screen.width));
int y = s_UVStartsAtTop
? (int)((softMaskBuffer.height - 1) * Mathf.Clamp01(sp.y / Screen.height))
: (int)((softMaskBuffer.height - 1) * (1 - Mathf.Clamp01(sp.y / Screen.height)));
? (int)((softMaskBuffer.height - 1) * (1 - Mathf.Clamp01(sp.y / Screen.height)))
: (int)((softMaskBuffer.height - 1) * Mathf.Clamp01(sp.y / Screen.height));
return 0.5f < GetPixelValue(x, y, interactions);
}
@ -286,11 +286,11 @@ namespace Coffee.UIExtensions
// Register.
if (s_ActiveSoftMasks.Count == 0)
{
s_UVStartsAtTop = SystemInfo.graphicsUVStartsAtTop;
Canvas.willRenderCanvases += UpdateMaskTextures;
if (s_StencilCompId == 0)
{
s_UVStartsAtTop = SystemInfo.graphicsUVStartsAtTop;
s_StencilCompId = Shader.PropertyToID("_StencilComp");
s_ColorMaskId = Shader.PropertyToID("_ColorMask");
s_MainTexId = Shader.PropertyToID("_MainTex");

17
Packages/SoftMaskForUGUI/Scripts/SoftMaskable.cs Executable file → Normal file
View File

@ -36,8 +36,10 @@ namespace Coffee.UIExtensions
[Tooltip("The interaction for each masks.")]
[HideInInspector]
[SerializeField] int m_MaskInteraction = kVisibleInside;
[Tooltip("Use stencil for masking.")]
[Tooltip("Use stencil to mask.")]
[SerializeField] bool m_UseStencil = false;
[Tooltip("Use soft-masked raycast target.\n\nNote: This option is expensive.")]
[SerializeField] bool m_RaycastFilter = false;
//################################
@ -115,6 +117,10 @@ namespace Coffee.UIExtensions
{
return false;
}
else if (!m_RaycastFilter)
{
return true;
}
var sm = _softMask;
for (int i = 0; i < 4; i++)
@ -144,6 +150,15 @@ namespace Coffee.UIExtensions
}
}
/// <summary>
/// Use soft-masked raycast target. This option is expensive.
/// </summary>
public bool raycastFilter
{
get { return m_RaycastFilter; }
set { m_RaycastFilter = value; }
}
/// <summary>
/// The graphic associated with the soft mask.
/// </summary>