Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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. }