using System; namespace UnityEngine.UI { /// /// This element is capable of being masked out. /// public interface IMaskable { /// /// Recalculate masking for this element and all children elements. /// /// /// Use this to update the internal state (recreate materials etc). /// void RecalculateMasking(); } }