feat: add a new public property 'useStencil'

vr
mob-sakai 2020-06-06 16:41:30 +09:00
parent c1b236c55f
commit 09dbaad203
1 changed files with 14 additions and 0 deletions

View File

@ -71,6 +71,20 @@ namespace Coffee.UISoftMask
set { m_RaycastFilter = value; }
}
/// <summary>
/// Use stencil to mask.
/// </summary>
public bool useStencil
{
get { return m_UseStencil; }
set
{
if (m_UseStencil == value) return;
m_UseStencil = value;
graphic.SetMaterialDirtyEx();
}
}
/// <summary>
/// The graphic associated with the soft mask.
/// </summary>