Firstborn/Library/PackageCache/com.unity.shadergraph@12.1.8/Editor/Drawing/Interfaces/IResizable.cs

11 lines
403 B
C#
Raw Normal View History

2023-03-28 13:24:16 -04:00
using UnityEditor.Experimental.GraphView;
namespace UnityEditor.ShaderGraph.Drawing.Interfaces
{
interface ISGResizable : IResizable
{
// Depending on the return value, the ElementResizer either allows resizing past parent view edge (like in case of StickyNote) or clamps the size at the edges of parent view (like for GraphSubWindows)
bool CanResizePastParentBounds();
}
}