switched to apollo palette and self made sprites

This commit is contained in:
2024-04-07 12:05:37 +02:00
parent 77de9621c9
commit 261f23a5a9
132 changed files with 567 additions and 412 deletions

View File

@@ -4,6 +4,7 @@ import (
"fmt"
"image/color"
"openquell/assets"
"openquell/config"
"openquell/observers"
"strings"
@@ -71,7 +72,7 @@ func (system *HudSystem) Draw(screen *ebiten.Image) {
}
func (system *HudSystem) Print(text string, x, y int) {
fg := &color.RGBA{0x4c, 0, 0xff, 255}
fg := &config.FontColorFG
bg := &color.RGBA{0x9a, 0x6f, 0xff, 255}
assets.FontRenderer.Renderer.SetColor(bg)