You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Please read **Binding notice** to get more info about specific of the binding AP
12
12
See official [documentation](https://github.com/ocornut/imgui#usage) and [wiki](https://github.com/ocornut/imgui/wiki) to get more info about how to do things in ImGui.
13
13
14
14
Binding doesn't force you to use backend renderer which is introduced here. Feel free to use your own render engine if you need so.
15
-
See how things are done in [ImGuiImplGl3](https://github.com/SpaiR/imgui-java/blob/v1.75-0.6/imgui-lwjgl3/src/main/java/imgui/gl3/ImGuiImplGl3.java).
15
+
See how things are done in [ImGuiImplGl3](https://github.com/SpaiR/imgui-java/blob/v1.75-0.7/imgui-lwjgl3/src/main/java/imgui/gl3/ImGuiImplGl3.java).
16
16
17
17
Binding has the next version naming: `imguiVersion-bindingVersion`.<br>
18
18
For example `1.74-0.1` means that binding uses `1.74` version of **ImGui** and binding itself has version `0.1`.
@@ -25,13 +25,13 @@ _Make sure you have installed Java 8 or higher._
25
25
You can try this binding by yourself in a three simple steps:
That's it! This will start an example app [ImGuiGlfwExample](https://github.com/SpaiR/imgui-java/blob/v1.75-0.6/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java)
34
-
which relies on GLFW and LWJGL3. Feel free to modify [ImGuiGlfwExample#showUi](https://github.com/SpaiR/imgui-java/blob/v1.75-0.6/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java#L346)
33
+
That's it! This will start an example app [ImGuiGlfwExample](https://github.com/SpaiR/imgui-java/blob/v1.75-0.7/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java)
34
+
which relies on GLFW and LWJGL3. Feel free to modify [ImGuiGlfwExample#showUi](https://github.com/SpaiR/imgui-java/blob/v1.75-0.7/imgui-lwjgl3/src/test/java/ImGuiGlfwExample.java#L346)
35
35
method to try different ImGui widgets in action.
36
36
37
37
**GIF with example:**https://imgur.com/a/E2rfuCR
@@ -57,7 +57,7 @@ method to try different ImGui widgets in action.
57
57
58
58
ext {
59
59
lwjglVersion = '3.2.3'
60
-
imguiVersion = '1.75-0.6'
60
+
imguiVersion = '1.75-0.7'
61
61
}
62
62
63
63
dependencies {
@@ -85,13 +85,13 @@ repositories {
85
85
### Step 2
86
86
Add binding dependency:
87
87
```
88
-
implementation 'io.imgui.java:binding:1.75-0.6'
88
+
implementation 'io.imgui.java:binding:1.75-0.7'
89
89
```
90
90
91
91
### Step 3
92
92
If you want to use LWJGL3 renderer:
93
93
```
94
-
implementation 'io.imgui.java:lwjgl3:1.75-0.6'
94
+
implementation 'io.imgui.java:lwjgl3:1.75-0.7'
95
95
```
96
96
**Disclaimer!**<br>
97
97
LWJGL3 renderer is based on the `3.2.3` version of the [LWJGL](https://www.lwjgl.org/).
@@ -101,7 +101,7 @@ You can find how to do that [here](https://www.lwjgl.org/customize).
0 commit comments