| 627 | } |
| 628 | |
| 629 | void _InspectorWindow::processMuscleContent(MuscleDescription& muscle) |
| 630 | { |
| 631 | if (ImGui::TreeNodeEx("Properties", TreeNodeFlags)) { |
| 632 | AlienImGui::Combo( |
| 633 | AlienImGui::ComboParameters() |
| 634 | .name("Mode") |
| 635 | .values({"Movement to sensor target", "Expansion and contraction", "Bending"}) |
| 636 | .textWidth(CellFunctionTextWidth) |
| 637 | .tooltip(Const::GenomeMuscleModeTooltip), |
| 638 | muscle.mode); |
| 639 | ImGui::TreePop(); |
| 640 | } |
| 641 | } |
| 642 | |
| 643 | void _InspectorWindow::processSensorContent(SensorDescription& sensor) |
| 644 | { |
nothing calls this directly
no test coverage detected