Add blank white wallpaper
This commit is contained in:
parent
c7fee43f54
commit
4c2e8eca49
2
Makefile
2
Makefile
|
@ -1,6 +1,6 @@
|
|||
SHELL := /bin/bash
|
||||
|
||||
VERSION=$(shell grep -e 'Version =' pkg/doodle.go | head -n 1 | cut -d '"' -f 2)
|
||||
VERSION=$(shell grep -e 'Version =' pkg/branding/branding.go | head -n 1 | cut -d '"' -f 2)
|
||||
BUILD=$(shell git describe --always)
|
||||
BUILD_DATE=$(shell date -Iseconds)
|
||||
CURDIR=$(shell curdir)
|
||||
|
|
BIN
assets/wallpapers/white.png
Normal file
BIN
assets/wallpapers/white.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 693 B |
|
@ -154,15 +154,19 @@ func (s *MenuScene) setupNewWindow(d *Doodle) error {
|
|||
{"Unbounded", level.Unbounded},
|
||||
{"Bounded", level.Bounded},
|
||||
{"No Negative Space", level.NoNegativeSpace},
|
||||
{"Bordered", level.Bordered},
|
||||
// {"Bordered (TODO)", level.Bordered},
|
||||
}
|
||||
for _, t := range types {
|
||||
// Hide some options for the free version of the game.
|
||||
if balance.FreeVersion {
|
||||
if t.Value != level.Bounded {
|
||||
continue
|
||||
}
|
||||
}
|
||||
// TODO: Hide some options for the free version of the game.
|
||||
// - At launch only Bounded and Bordered will be available
|
||||
// in the shareware version.
|
||||
// - For now, only hide Bordered as it's not yet implemented.
|
||||
// --------
|
||||
// if balance.FreeVersion {
|
||||
// if t.Value == level.Bordered {
|
||||
// continue
|
||||
// }
|
||||
// }
|
||||
|
||||
func(t typeObj) {
|
||||
radio := ui.NewRadioButton(t.Name,
|
||||
|
@ -211,7 +215,8 @@ func (s *MenuScene) setupNewWindow(d *Doodle) error {
|
|||
{"Notebook", "notebook.png"},
|
||||
{"Blueprint", "blueprint.png"},
|
||||
{"Legal Pad", "legal.png"},
|
||||
{"Placemat", "placemat.png"},
|
||||
{"Pure White", "white.png"},
|
||||
// {"Placemat", "placemat.png"},
|
||||
}
|
||||
for _, t := range wallpapers {
|
||||
func(t wallpaperObj) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user