コード例 #1
0
void ImGui_ImplCinder_CharCallback(ci::app::KeyEvent e)
{
    ImGuiIO& io = ImGui::GetIO();
    if (e.getCharUtf32() > 0 && e.getCharUtf32() < 0x10000)
        io.AddInputCharacter((unsigned short)e.getCharUtf32());
}