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

Method GetBox

Source/Engine/Visject/GraphNode.h:187–191  ·  view source on GitHub ↗

Get box by ID Box ID Box

Source from the content-addressed store, hash-verified

185 /// <param name="id">Box ID</param>
186 /// <returns>Box</returns>
187 Box* GetBox(int32 id)
188 {
189 ASSERT(Boxes.HasItems() && Boxes.Count() > id && Boxes[id].ID == id && Boxes[id].Parent == this);
190 return &Boxes[id];
191 }
192
193 /// <summary>
194 /// Get box by ID, returns null if missing.

Callers 13

ProcessGroupMathMethod · 0.45
ProcessGroupPackingMethod · 0.45
ProcessGroupToolsMethod · 0.45
ProcessGroupBooleanMethod · 0.45
ProcessGroupBitwiseMethod · 0.45
ProcessGroupMathMethod · 0.45
ProcessGroupPackingMethod · 0.45
ProcessGroupToolsMethod · 0.45
ProcessGroupBooleanMethod · 0.45
ProcessGroupBitwiseMethod · 0.45

Calls 2

HasItemsMethod · 0.45
CountMethod · 0.45

Tested by

no test coverage detected