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

@@ -54,7 +54,7 @@ func (container *RowContainer) Container() *widget.Container {
// set arg to false if no background needed
func NewRowContainer(setbackground ...bool) *RowContainer {
background := assets.Assets["background-lila"]
background := assets.Assets["background1"]
var uiContainer *widget.Container
if len(setbackground) > 0 {
@@ -66,7 +66,7 @@ func NewRowContainer(setbackground ...bool) *RowContainer {
// default: true
uiContainer = widget.NewContainer(
widget.ContainerOpts.BackgroundImage(
image.NewNineSlice(background, [3]int{0, 1, 639}, [3]int{0, 1, 479})),
image.NewNineSlice(background, [3]int{0, 1, 639}, [3]int{0, 1, 383})),
widget.ContainerOpts.Layout(widget.NewAnchorLayout()),
)
}