| 707 | |
| 708 | |
| 709 | lua::ImguiHandle TreeParent::AddInputInt(char const* label, std::optional<int> value) |
| 710 | { |
| 711 | auto e = AddChild<InputInt>(); |
| 712 | e->Label = label; |
| 713 | if (value) e->Value = glm::ivec4(*value); |
| 714 | return e; |
| 715 | } |
| 716 | |
| 717 | |
| 718 | lua::ImguiHandle TreeParent::AddColorEdit(char const* label, std::optional<glm::vec3> value) |
nothing calls this directly
no outgoing calls
no test coverage detected