- 524
- 164
- Версия MoonLoader
- .026-beta
Есть вот input а так же combo
Мне нужно если в комбо я нажал какой то пункт из 4 -
То в input вставлялся текст который мне надо
LUA:
--Input--
local textBuffer = new.char[256]()
--Combo--
local int_item = imgui.new.int(0)
local item_list = {u8"Обычный текст", u8"Отыгровка /me", u8"Отыгровка /do", u8"Отыгровка /todo",}
local ImItems = imgui.new['const char*'][#item_list](item_list)
--mimgui--
imgui.PushItemWidth(125)
if imgui.Combo("##1", int_item, ImItems, #item_list) then end
imgui.PopItemWidth()
imgui.SameLine()
if imgui.InputText(u8"Первая строка", textBuffer, sizeof(textBuffer)) then end