Files
CartoonFPS/Library/PackageCache/com.unity.shadergraph@052d95cfe62a/Editor/Drawing/Interfaces/IResizable.cs
SHOUTING_PIRATE 4c8592d0ab initial commit
2025-08-05 09:30:40 +01: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();
}
}