forked from Unity-Technologies/UnityCsReference
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCapabilities.cs
More file actions
31 lines (28 loc) · 696 Bytes
/
Capabilities.cs
File metadata and controls
31 lines (28 loc) · 696 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
25
26
27
28
29
30
31
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
namespace UnityEditor.Experimental.GraphView
{
[Flags]
public enum Capabilities
{
Selectable = 1 << 0,
Collapsible = 1 << 1,
Resizable = 1 << 2,
Movable = 1 << 3,
Deletable = 1 << 4,
Droppable = 1 << 5,
Ascendable = 1 << 6,
Renamable = 1 << 7,
Copiable = 1 << 8,
Snappable = 1 << 9,
Groupable = 1 << 10,
Stackable = 1 << 11
}
internal enum ResizeRestriction
{
None,
FlexDirection
}
}