Firstborn/Library/PackageCache/com.unity.shadergraph@12.1.8/Editor/Drawing/Interfaces/IResizable.cs
Schaken-Mods b486678290 Library -Artifacts
Library -Artifacts
2023-03-28 12:24:16 -05:00

11 lines
403 B
C#

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();
}
}