MCPcopy Create free account
hub / github.com/Norbyte/bg3se / AddInputInt

Method AddInputInt

BG3Extender/Extender/Client/IMGUI/IMGUI.cpp:709–715  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

707
708
709lua::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
718lua::ImguiHandle TreeParent::AddColorEdit(char const* label, std::optional<glm::vec3> value)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected