| 2673 | } |
| 2674 | |
| 2675 | void SetNodeDraggable(const int node_id, const bool draggable) |
| 2676 | { |
| 2677 | ImNodesEditorContext& editor = EditorContextGet(); |
| 2678 | ImNodeData& node = ObjectPoolFindOrCreateObject(editor.Nodes, node_id); |
| 2679 | node.Draggable = draggable; |
| 2680 | } |
| 2681 | |
| 2682 | ImVec2 GetNodeScreenSpacePos(const int node_id) |
| 2683 | { |
nothing calls this directly
no outgoing calls
no test coverage detected