i cannot call out the keyboard when i use "inputText",how to fix it?
------------------------------------------------------------------------------
require "ImGui"
local imgui = ImGui.new()
stage:addChild(imgui)
local window01 = true
local text = "my text"
function onEnterFrame(e)
-- 1 we start ImGui
imgui:newFrame(e.deltaTime)
-- 2 we add some child windows and build our GUI
window01 = imgui:beginWindow("Window 01") -- no close button (X)
if window01 then -- the variable is false when window is collapsed
imgui:text("Hello Dear ImGui!")
local isChanged = false
text, isChanged = imgui:inputText("text", text, 300, 0)
if isChanged then print(text) end
end
-- 3 we end the frame and render to screen
imgui:endFrame()
imgui:render()
end
stage:addEventListener(Event.ENTER_FRAME, onEnterFrame)
Comments
Likes: MoKaLux