暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

IResizable.cs 403B

12345678910
  1. using UnityEditor.Experimental.GraphView;
  2. namespace UnityEditor.ShaderGraph.Drawing.Interfaces
  3. {
  4. interface ISGResizable : IResizable
  5. {
  6. // 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)
  7. bool CanResizePastParentBounds();
  8. }
  9. }