forked from hunterzonewu/unity-decompiled
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIMask.cs
More file actions
24 lines (21 loc) · 711 Bytes
/
IMask.cs
File metadata and controls
24 lines (21 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Decompiled with JetBrains decompiler
// Type: UnityEngine.UI.IMask
// Assembly: UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 2216A18B-AF52-44A5-85A0-A1CAA19C1090
// Assembly location: C:\Users\Blake\sandbox\unity\test-project\Library\UnityAssemblies\UnityEngine.UI.dll
using System;
namespace UnityEngine.UI
{
[Obsolete("Not supported anymore.", true)]
public interface IMask
{
/// <summary>
/// <para>Return the RectTransform associated with this mask.</para>
/// </summary>
RectTransform rectTransform { get; }
/// <summary>
/// <para>Is the mask enabled.</para>
/// </summary>
bool Enabled();
}
}