Noah Petherbridge
190d4be1b6
* When editing a doodad in the Editor Mode, the toolbar has a "Lyr." button that opens the Layers window. * The Layers window allows switching the active doodad layer that you are drawing on, as well as create and rename layers. * With this feature, Doodads may be fully drawn in-game, including adding alternate named layers for animations and multiple-state doodads. * Update the Pager component to have a configurable MaxPageButtons. Controls that have more pages than this limit will stop having buttons drawn after the limit. The "Forward" and "Next" buttons can still navigate into the extra pages. * Refactored and centralized the various popup windows in Editor Mode into editor_ui_popups.go; the SetupPopups() and various methods such as ShowPaletteWindow() and ShowDoodadDropper() make management of popups simple for the editor_ui! * The Menu Bar in Editor Mode now has context-specific tools in the Tools menu: the Doodad Dropper for levels and Layers for doodads. * Bugfix the Palette Editor window to work equally between Levels and Doodads, by only having it care about the Palette and not the Level that owns it.
38 lines
1.8 KiB
Modula-2
38 lines
1.8 KiB
Modula-2
module git.kirsle.net/apps/doodle
|
|
|
|
go 1.15
|
|
|
|
replace git.kirsle.net/go/render => /home/kirsle/SketchyMaze/render
|
|
|
|
replace git.kirsle.net/go/ui => /home/kirsle/SketchyMaze/ui
|
|
|
|
require (
|
|
4d63.com/gochecknoglobals v0.0.0-20201008074935-acfc0b28355a // indirect
|
|
4d63.com/gochecknoinits v0.0.0-20200108094044-eb73b47b9fc4 // indirect
|
|
dmitri.shuralyov.com/go/generated v0.0.0-20170818220700-b1254a446363 // indirect
|
|
git.kirsle.net/go/audio v0.0.0-20200429055451-ae3b0695ba6f
|
|
git.kirsle.net/go/log v0.0.0-20200902035305-70ac2848949b
|
|
git.kirsle.net/go/render v0.0.0-20200710023247-e5f4c3a16860
|
|
git.kirsle.net/go/ui v0.0.0-20200710023146-e2a561fbd04c
|
|
github.com/alecthomas/gocyclo v0.0.0-20150208221726-aa8f8b160214 // indirect
|
|
github.com/google/uuid v1.1.2
|
|
github.com/gordonklaus/ineffassign v0.0.0-20201107091007-3b93a8888063 // indirect
|
|
github.com/jgautheron/goconst v0.0.0-20201108215931-f8e4fe8351cd // indirect
|
|
github.com/kirsle/configdir v0.0.0-20170128060238-e45d2f54772f
|
|
github.com/mdempsky/maligned v0.0.0-20201101000000-d73c43cb16d0 // indirect
|
|
github.com/robertkrimen/otto v0.0.0-20200922221731-ef014fd054ac
|
|
github.com/tomnomnom/xtermcolor v0.0.0-20160428124646-b78803f00a7e // indirect
|
|
github.com/urfave/cli v1.22.5
|
|
github.com/urfave/cli/v2 v2.3.0
|
|
github.com/veandco/go-sdl2 v0.4.4
|
|
github.com/vmihailenco/msgpack v3.3.3+incompatible
|
|
github.com/walle/lll v1.0.1 // indirect
|
|
golang.org/x/crypto v0.0.0-20201112155050-0c6587e931a9 // indirect
|
|
golang.org/x/image v0.0.0-20200927104501-e162460cd6b5
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
gopkg.in/sourcemap.v1 v1.0.5 // indirect
|
|
mvdan.cc/interfacer v0.0.0-20180901003855-c20040233aed // indirect
|
|
mvdan.cc/lint v0.0.0-20170908181259-adc824a0674b // indirect
|
|
mvdan.cc/unparam v0.0.0-20200501210554-b37ab49443f7 // indirect
|
|
)
|