File tree 6 files changed +12
-6
lines changed
6 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 14
14
# Dependency directories (remove the comment below to include it)
15
15
# vendor/
16
16
imgui.ini
17
+ pixelui_examples
Original file line number Diff line number Diff line change 10
10
"request" : " launch" ,
11
11
"mode" : " auto" ,
12
12
"program" : " ${workspaceFolder}/test.go" ,
13
+ "buildFlags" : " -tags='imguifreetype'" ,
13
14
"env" : {
14
15
},
15
16
"args" : [
16
- " -tags='imguifreetype'"
17
17
]
18
18
}
19
19
]
Original file line number Diff line number Diff line change 1
1
{
2
- "go.buildTags" : " -tags='imguifreetype'"
3
2
}
Original file line number Diff line number Diff line change 6
6
{
7
7
"label" : " build" ,
8
8
"type" : " shell" ,
9
- "command" : " go build -tags='imguifreetype' && ./pixelui_examples" ,
9
+ "command" : " go build -tags='imguifreetype' -tags='glfw' && ./pixelui_examples" ,
10
10
"problemMatcher" : [],
11
11
"group" : {
12
12
"kind" : " build" ,
Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ import (
15
15
16
16
"github.com/inkyblackness/imgui-go"
17
17
18
+ "github.com/dusk125/pixelui"
18
19
"github.com/faiface/pixel"
19
20
"github.com/faiface/pixel/pixelgl"
20
21
"golang.org/x/image/colornames"
21
22
)
22
- import "github.com/dusk125/pixelui"
23
23
24
24
func main () {
25
25
pixelgl .Run (run )
@@ -37,19 +37,25 @@ func run() {
37
37
38
38
context := imgui .CreateContext (nil )
39
39
defer context .Destroy ()
40
- ui := pixelui .NewUi (context )
40
+ ui := pixelui .NewUI (context )
41
41
42
42
imgui .StyleColorsDark ()
43
+ // imgui.StyleColorsLight()
43
44
45
+ open := true
44
46
for ! win .Closed () {
47
+ ui .NewFrame ()
45
48
if win .JustReleased (pixelgl .KeyEscape ) {
46
49
win .SetClosed (true )
47
50
}
48
51
49
52
win .Clear (colornames .Skyblue )
50
53
51
54
imgui .NewFrame ()
52
- imgui .ShowDemoWindow (nil )
55
+
56
+ if open {
57
+ imgui .ShowDemoWindow (& open )
58
+ }
53
59
// imgui.Button("Hello")
54
60
// imgui.Button("Button 2")
55
61
You can’t perform that action at this time.
0 commit comments