| 725 | |
| 726 | |
| 727 | lua::ImguiHandle TreeParent::AddColorPicker(char const* label, std::optional<glm::vec3> value) |
| 728 | { |
| 729 | auto e = AddChild<ColorPicker>(); |
| 730 | e->Label = label; |
| 731 | if (value) e->Color = glm::vec4(*value, 1.0f); |
| 732 | return e; |
| 733 | } |
| 734 | |
| 735 | |
| 736 | lua::ImguiHandle TreeParent::AddProgressBar() |
nothing calls this directly
no outgoing calls
no test coverage detected