Files
CityBuilder/Library/PackageCache/com.unity.shadergraph@052d95cfe62a/Editor/Drawing/Interfaces/IResizable.cs
SHOUTING_PIRATE 1c91215efd initial commit
2025-07-07 20:59:04 +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();
}
}