Как сделать подсказки с чекбоксу

aondec

Участник
Автор темы
49
3
Хочу добавить подсказку к чекбоксам чита:
if imgui.Checkbox(u8'NoEjectVehicle', noeject) then
sampSendChat('/njc')
end
 

petyua

Известный
1
0
312312:
        if imgui.Checkbox(u8'NoEjectVehicle', noeject) then
            sampSendChat('/njc')
        end
        if imgui.IsItemHovered() then
            imgui.BeginTooltip()
            imgui.Text(u8'ТЕКСТ ПОДСКАЗКИ') -- сюда пишешь текст подсказки
            imgui.EndTooltip()
        end

или

fsdfsd:
        if imgui.Checkbox(u8'NoEjectVehicle', noeject) then
            sampSendChat('/njc')
        end
        imgui.SameLine()
        imgui.TextDisabled('(?)')
        if imgui.IsItemHovered() then
            imgui.BeginTooltip()
            imgui.PushTextWrapPos(600)
            imgui.TextUnformatted("ТЕКСТ ПОДСКАЗКИ") -- сюда пишешь текст подсказки
            imgui.PopTextWrapPos()
            imgui.EndTooltip()
        end
 
  • Эм
Реакции: fokichevskiy и Willy4ka

Willy4ka

вилличка
Модератор
426
739
312312:
        if imgui.Checkbox(u8'NoEjectVehicle', noeject) then
            sampSendChat('/njc')
        end
        if imgui.IsItemHovered() then
            imgui.BeginTooltip()
            imgui.Text(u8'ТЕКСТ ПОДСКАЗКИ') -- сюда пишешь текст подсказки
            imgui.EndTooltip()
        end

или

fsdfsd:
        if imgui.Checkbox(u8'NoEjectVehicle', noeject) then
            sampSendChat('/njc')
        end
        imgui.SameLine()
        imgui.TextDisabled('(?)')
        if imgui.IsItemHovered() then
            imgui.BeginTooltip()
            imgui.PushTextWrapPos(600)
            imgui.TextUnformatted("ТЕКСТ ПОДСКАЗКИ") -- сюда пишешь текст подсказки
            imgui.PopTextWrapPos()
            imgui.EndTooltip()
        end
Lua:
if imgui.Checkbox(u8'NoEjectVehicle', noeject) then
    sampSendChat('/njc')
end
imgui.SameLine()
imgui.TextQuestion(u8'подсказка')
 
  • Клоун
  • Нравится
Реакции: cloudflare и petyua