| 907 | void CPathPadDialog::OnSetfocusAinOtherNode() { ResetNodesForComboBox(IDC_AIN_OTHER_NODE, ENode_view_type); } |
| 908 | |
| 909 | void CPathPadDialog::OnIenavButton() { |
| 910 | int node = EBNode_InsertNodeOnEdge(BNode_current_id, BNode_current_room, BNode_other_id, BNode_other_room); |
| 911 | if (node >= 0) { |
| 912 | vector diff = Viewer_object->pos; |
| 913 | |
| 914 | EBNode_Move(false, BNode_current_room, node, &diff); |
| 915 | World_changed = 1; |
| 916 | } |
| 917 | } |
| 918 | |
| 919 | void CPathPadDialog::OnMvtnButton() { |
| 920 | vector pos; |
nothing calls this directly
no test coverage detected