Add blank white wallpaper

physics
Noah 2019-06-25 18:10:57 -07:00
parent c7fee43f54
commit 4c2e8eca49
3 changed files with 14 additions and 9 deletions

View File

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 693 B

View File

@ -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) {