Skip to content

Commit c0f7cff

Browse files
author
Allen Ray
committed
Using the default font now.
1 parent 606148b commit c0f7cff

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414
# Dependency directories (remove the comment below to include it)
1515
# vendor/
1616
imgui.ini
17+
pixelui_examples

.vscode/launch.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
"request": "launch",
1111
"mode": "auto",
1212
"program": "${workspaceFolder}/test.go",
13+
"buildFlags": "-tags='imguifreetype'",
1314
"env": {
1415
},
1516
"args": [
16-
"-tags='imguifreetype'"
1717
]
1818
}
1919
]

.vscode/settings.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
{
2-
"go.buildTags": "-tags='imguifreetype'"
32
}

.vscode/tasks.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{
77
"label": "build",
88
"type": "shell",
9-
"command": "go build -tags='imguifreetype' && ./pixelui_examples",
9+
"command": "go build -tags='imguifreetype' -tags='glfw' && ./pixelui_examples",
1010
"problemMatcher": [],
1111
"group": {
1212
"kind": "build",

test.go

+9-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ import (
1515

1616
"github.com/inkyblackness/imgui-go"
1717

18+
"github.com/dusk125/pixelui"
1819
"github.com/faiface/pixel"
1920
"github.com/faiface/pixel/pixelgl"
2021
"golang.org/x/image/colornames"
2122
)
22-
import "github.com/dusk125/pixelui"
2323

2424
func main() {
2525
pixelgl.Run(run)
@@ -37,19 +37,25 @@ func run() {
3737

3838
context := imgui.CreateContext(nil)
3939
defer context.Destroy()
40-
ui := pixelui.NewUi(context)
40+
ui := pixelui.NewUI(context)
4141

4242
imgui.StyleColorsDark()
43+
// imgui.StyleColorsLight()
4344

45+
open := true
4446
for !win.Closed() {
47+
ui.NewFrame()
4548
if win.JustReleased(pixelgl.KeyEscape) {
4649
win.SetClosed(true)
4750
}
4851

4952
win.Clear(colornames.Skyblue)
5053

5154
imgui.NewFrame()
52-
imgui.ShowDemoWindow(nil)
55+
56+
if open {
57+
imgui.ShowDemoWindow(&open)
58+
}
5359
// imgui.Button("Hello")
5460
// imgui.Button("Button 2")
5561

test.ttf

-19 KB
Binary file not shown.

0 commit comments

Comments
 (0)