You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
403 B
10 lines
403 B
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(); |
|
} |
|
}
|
|
|