Definition
-- @/lua/common/extensions/ui/imgui_gen_luaintf.lua:752
function M.CollapsingHeader2(string_label, bool_p_visible, ImGuiTreeNodeFlags_flags)
if ImGuiTreeNodeFlags_flags == nil then ImGuiTreeNodeFlags_flags = 0 end
if string_label == nil then log("E", "", "Parameter 'string_label' of function 'CollapsingHeader2' cannot be nil, as the c type is 'const char *'") ; return end
if bool_p_visible == nil then log("E", "", "Parameter 'bool_p_visible' of function 'CollapsingHeader2' cannot be nil, as the c type is 'bool *'") ; return end
return imgui.CollapsingHeader2(string_label, bool_p_visible, ImGuiTreeNodeFlags_flags)
end
Callers
@/lua/common/extensions/ui/imgui_gen_luaintf.lua
if bool_p_visible == nil then log("E", "", "Parameter 'bool_p_visible' of function 'CollapsingHeader2' cannot be nil, as the c type is 'bool *'") ; return end
return imgui.CollapsingHeader2(string_label, bool_p_visible, ImGuiTreeNodeFlags_flags)
end