замена CheckBox на RadioButton | imgui

shvchuk

Участник
Автор темы
44
13
Нужно заменить 2 чекбокса (ниже) на 2 радио буттона так, что бы по дефолту не стоял ни один радио буттон
Lua:
    if imgui.Checkbox("Aspect Ratio Pro", checkbox_asp) then
        if checkbox_asp.v then
            memory.fill(0x6FF452, 0x90, 6, true)
            memory.setfloat(0xC3EFA4, 1, true)
        else
            memory.fill(0x6FF452, 0x90, 6, true)
            memory.setfloat(0xC3EFA4, 1.3, true)
        end
    end
    if imgui.Checkbox("Aspect Ratio Pro v2", checkbox_asppp) then
        if checkbox_asppp.v then
            memory.fill(0x6FF452, 0x90, 6, true)
            memory.setfloat(0xC3EFA4, 0.831, true)
        else
            memory.fill(0x6FF452, 0x90, 6, true)
            memory.setfloat(0xC3EFA4, 1.3, true)
        end
    end
    imgui.End()
end