Starting custom editor window

This commit is contained in:
bloeys
2022-02-25 09:13:40 +04:00
parent 7f57fcb7e0
commit ceda79cffb
5 changed files with 216 additions and 60 deletions

8
settings/settings.go Executable file
View File

@ -0,0 +1,8 @@
package settings
import "github.com/inkyblackness/imgui-go/v4"
var (
TextSelectionColor imgui.Vec4 = imgui.Vec4{X: 84 / 255.0, Y: 153 / 255.0, Z: 199 / 255.0, W: 0.4}
EditorBgColor imgui.Vec4 = imgui.Vec4{X: 0.1, Y: 0.1, Z: 0.1, W: 1}
)