ColorEdit4

Lertex

Участник
Автор темы
30
0
Версия MoonLoader
.027.0-preview
Как добавить крестик (чтобы окно закрывалось) в ColorEdit4?
 
Решение
Lua:
function imgui.ColorEdit4WithFuckingCloseButton(label, colors, flags)
    local col, closed
    if imgui.ColorButton(label, imgui.ImVec4(colors[0], colors[1], colors[2], colors[3])) then
        imgui.OpenPopup('da_ti_vnature_olen'..label)
    end
    imgui.SameLine()
    imgui.Text(label)
    if imgui.BeginPopup('da_ti_vnature_olen'..label) then
        closed = imgui.Button('X##nu_zakroysya_pojaluysta', imgui.ImVec2(imgui.GetWindowWidth() - imgui.GetStyle().WindowPadding.x * 2, 20))
        col = imgui.ColorPicker4('##suka_nu_i_govno'..label, colors, flags)
        imgui.EndPopup()
    end
    return col, closed
end
1681909574233.png

chapo

tg/inst: @moujeek
Модератор
9,075
12,037
Lua:
function imgui.ColorEdit4WithFuckingCloseButton(label, colors, flags)
    local col, closed
    if imgui.ColorButton(label, imgui.ImVec4(colors[0], colors[1], colors[2], colors[3])) then
        imgui.OpenPopup('da_ti_vnature_olen'..label)
    end
    imgui.SameLine()
    imgui.Text(label)
    if imgui.BeginPopup('da_ti_vnature_olen'..label) then
        closed = imgui.Button('X##nu_zakroysya_pojaluysta', imgui.ImVec2(imgui.GetWindowWidth() - imgui.GetStyle().WindowPadding.x * 2, 20))
        col = imgui.ColorPicker4('##suka_nu_i_govno'..label, colors, flags)
        imgui.EndPopup()
    end
    return col, closed
end
1681909574233.png
 
  • Нравится
Реакции: Lertex

Lertex

Участник
Автор темы
30
0
Lua:
function imgui.ColorEdit4WithFuckingCloseButton(label, colors, flags)
    local col, closed
    if imgui.ColorButton(label, imgui.ImVec4(colors[0], colors[1], colors[2], colors[3])) then
        imgui.OpenPopup('da_ti_vnature_olen'..label)
    end
    imgui.SameLine()
    imgui.Text(label)
    if imgui.BeginPopup('da_ti_vnature_olen'..label) then
        closed = imgui.Button('X##nu_zakroysya_pojaluysta', imgui.ImVec2(imgui.GetWindowWidth() - imgui.GetStyle().WindowPadding.x * 2, 20))
        col = imgui.ColorPicker4('##suka_nu_i_govno'..label, colors, flags)
        imgui.EndPopup()
    end
    return col, closed
end
Посмотреть вложение 198239
Ахах, спасибо