MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / GetBoxes

Method GetBoxes

Source/Editor/Surface/SurfaceNode.cs:587–596  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

585 }
586
587 internal List<Box> GetBoxes()
588 {
589 var result = new List<Box>();
590 for (int i = 0; i < Elements.Count; i++)
591 {
592 if (Elements[i] is Box box)
593 result.Add(box);
594 }
595 return result;
596 }
597
598 internal void GetBoxes(List<Box> result)
599 {

Callers 13

ShowSecondaryCMMethod · 0.45
TryConnectMethod · 0.45
SaveGraphMethod · 0.45
FormatConnectedGraphMethod · 0.45
OnMouseMoveMethod · 0.45
OnMouseDoubleClickMethod · 0.45
OnMouseUpMethod · 0.45
MoveConnectedNodesMethod · 0.45
OnKeyDownMethod · 0.45
CaptureConnectionsMethod · 0.45

Calls 2

AddMethod · 0.45
ClearMethod · 0.45

Tested by

no test coverage detected