kotlin-imgui icon indicating copy to clipboard operation
kotlin-imgui copied to clipboard

Kotlin bindings for Dear ImGui

Results 8 kotlin-imgui issues
Sort by recently updated
recently updated
newest added

I could not find a way to compute the size of a text in advance, without rendering it on screen. As far as I know, ImGui has a `CalcTextSize` function...

Running the example from `samples` shows both the imgui and glfw window. Similar to: ![image](https://user-images.githubusercontent.com/22682767/123612142-9407b780-d802-11eb-8de6-e14ffe255eee.png) However, I believe that only the imgui `Hello, World` window should be visible by default....

Ran into this problem just now: function like `ImGui.treeNodeEx` which optionally take a `Flag` don't currently support sending nullable flags: ```kotlin val flags = (if (selected == current) ImGuiTreeNodeFlags.Selected else...

Currently a system exists in codegen to generate setters for a selected whitelist of properties in ImGui classes. One notable property missing is `ImGuiIO.configFlags`, and modification of `ImGuiStyle`'s properties is...

Ok, I've started using the sample from Dominaezzz's kotlin-imgui library for the K/N, but I get errors thrown when trying to compile it for `linuxArmHfp`. [error](https://paste.mglolenstine.xyz/V5m21DWRza), my [build.gradle.kts](https://paste.mglolenstine.xyz/AxOHijfUTY) and my...

Some functions like `fun ImGui.getWindowPos(): Vec2` could be `val ImGui.windowPos: Vec2`.

At the moment Kotlin/Native doesn't support forwarding args to variadic C functions. ``` fun ImGui.text(fmt: String, varags args: Any?) { igText(fmt, *args) } ``` result in ``` e:(...path...): When calling...

I am habing trouble with the imgui version you set (1.77)