| 698 | |
| 699 | |
| 700 | lua::ImguiHandle TreeParent::AddInputScalar(char const* label, std::optional<float> value) |
| 701 | { |
| 702 | auto e = AddChild<InputScalar>(); |
| 703 | e->Label = label; |
| 704 | if (value) e->Value = glm::vec4(*value); |
| 705 | return e; |
| 706 | } |
| 707 | |
| 708 | |
| 709 | lua::ImguiHandle TreeParent::AddInputInt(char const* label, std::optional<int> value) |
nothing calls this directly
no outgoing calls
no test coverage detected