Adjust ScrollboxVert and Prepare v0.5.0 for Release
This commit is contained in:
parent
1f274e0ca6
commit
0fedcf4fcb
14
Changes.md
14
Changes.md
|
@ -1,6 +1,6 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## v0.5.0-alpha
|
## v0.5.0-alpha (Mar 31 2021)
|
||||||
|
|
||||||
Project: Doodle is renamed to Sketchy Maze in this release.
|
Project: Doodle is renamed to Sketchy Maze in this release.
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ Updated Doodads:
|
||||||
Button is pressed. If the Sticky Button is released later (e.g. by receiving
|
Button is pressed. If the Sticky Button is released later (e.g. by receiving
|
||||||
power from a Switch) it releases its linked Buttons as well.
|
power from a Switch) it releases its linked Buttons as well.
|
||||||
|
|
||||||
## v0.4.0-alpha
|
## v0.4.0-alpha (Nov 21 2020)
|
||||||
|
|
||||||
This update brings improvements to the editor; you can now fully draw all the
|
This update brings improvements to the editor; you can now fully draw all the
|
||||||
graphics for a custom doodad using the in-app tools!
|
graphics for a custom doodad using the in-app tools!
|
||||||
|
@ -67,7 +67,7 @@ Other new features:
|
||||||
Hitting the Escape key will ask you before just exiting the program. Alert
|
Hitting the Escape key will ask you before just exiting the program. Alert
|
||||||
boxes are supported too, and an `alert` command added to the developer console.
|
boxes are supported too, and an `alert` command added to the developer console.
|
||||||
|
|
||||||
## v0.3.0-alpha
|
## v0.3.0-alpha (Sept 19 2020)
|
||||||
|
|
||||||
This update introduces the player character to the game. He doesn't have a name;
|
This update introduces the player character to the game. He doesn't have a name;
|
||||||
the game just refers to him as Boy.
|
the game just refers to him as Boy.
|
||||||
|
@ -94,7 +94,7 @@ Other new features:
|
||||||
- Default size is desktop: 1024x768
|
- Default size is desktop: 1024x768
|
||||||
- Mobile and landscape mimic a smartphone at 375x812 resolution.
|
- Mobile and landscape mimic a smartphone at 375x812 resolution.
|
||||||
|
|
||||||
## v0.2.0-alpha
|
## v0.2.0-alpha (June 7 2020)
|
||||||
|
|
||||||
This release brings Sound Effects and Menus to the game.
|
This release brings Sound Effects and Menus to the game.
|
||||||
|
|
||||||
|
@ -110,7 +110,7 @@ New features:
|
||||||
* The game now has a Menu Bar with pull-down menus in the Editor Mode instead
|
* The game now has a Menu Bar with pull-down menus in the Editor Mode instead
|
||||||
of just a top panel with New/Save/Open buttons.
|
of just a top panel with New/Save/Open buttons.
|
||||||
|
|
||||||
## v0.1.0-alpha
|
## v0.1.0-alpha (Apr 13 2020)
|
||||||
|
|
||||||
New doodads:
|
New doodads:
|
||||||
|
|
||||||
|
@ -138,7 +138,7 @@ Other changes:
|
||||||
* Tooltips added to various buttons in the Editor to show names of doodads and
|
* Tooltips added to various buttons in the Editor to show names of doodads and
|
||||||
functions of various buttons.
|
functions of various buttons.
|
||||||
|
|
||||||
## v0.0.10-alpha
|
## v0.0.10-alpha (July 18 2019)
|
||||||
|
|
||||||
New features:
|
New features:
|
||||||
|
|
||||||
|
@ -164,6 +164,6 @@ Bug fixes:
|
||||||
chunks are now culled when the last pixel is deleted and existing level files
|
chunks are now culled when the last pixel is deleted and existing level files
|
||||||
will be repaired on next save.
|
will be repaired on next save.
|
||||||
|
|
||||||
## v0.0.9-alpha
|
## v0.0.9-alpha (July 9 2019)
|
||||||
|
|
||||||
First alpha release.
|
First alpha release.
|
||||||
|
|
1
go.mod
1
go.mod
|
@ -20,6 +20,7 @@ require (
|
||||||
github.com/kisielk/errcheck v1.4.0 // indirect
|
github.com/kisielk/errcheck v1.4.0 // indirect
|
||||||
github.com/mdempsky/maligned v0.0.0-20201101000000-d73c43cb16d0 // indirect
|
github.com/mdempsky/maligned v0.0.0-20201101000000-d73c43cb16d0 // indirect
|
||||||
github.com/mdempsky/unconvert v0.0.0-20200228143138-95ecdbfc0b5f // indirect
|
github.com/mdempsky/unconvert v0.0.0-20200228143138-95ecdbfc0b5f // indirect
|
||||||
|
github.com/mibk/dupl v1.0.0 // indirect
|
||||||
github.com/opennota/check v0.0.0-20180911053232-0c771f5545ff // indirect
|
github.com/opennota/check v0.0.0-20180911053232-0c771f5545ff // indirect
|
||||||
github.com/robertkrimen/otto v0.0.0-20200922221731-ef014fd054ac
|
github.com/robertkrimen/otto v0.0.0-20200922221731-ef014fd054ac
|
||||||
github.com/stripe/safesql v0.2.0 // indirect
|
github.com/stripe/safesql v0.2.0 // indirect
|
||||||
|
|
2
go.sum
2
go.sum
|
@ -47,6 +47,8 @@ github.com/mdempsky/maligned v0.0.0-20201101000000-d73c43cb16d0 h1:+6XJvFZBYbNv/
|
||||||
github.com/mdempsky/maligned v0.0.0-20201101000000-d73c43cb16d0/go.mod h1:3UB4iTzhLciyWcrrvXSkrtCIU+IJ5GCfEmnleHRsxL4=
|
github.com/mdempsky/maligned v0.0.0-20201101000000-d73c43cb16d0/go.mod h1:3UB4iTzhLciyWcrrvXSkrtCIU+IJ5GCfEmnleHRsxL4=
|
||||||
github.com/mdempsky/unconvert v0.0.0-20200228143138-95ecdbfc0b5f h1:Kc3s6QFyh9DLgInXpWKuG+8I7R7lXbnP7mcoOVIt6KY=
|
github.com/mdempsky/unconvert v0.0.0-20200228143138-95ecdbfc0b5f h1:Kc3s6QFyh9DLgInXpWKuG+8I7R7lXbnP7mcoOVIt6KY=
|
||||||
github.com/mdempsky/unconvert v0.0.0-20200228143138-95ecdbfc0b5f/go.mod h1:AmCV4WB3cDMZqgPk+OUQKumliiQS4ZYsBt3AXekyuAU=
|
github.com/mdempsky/unconvert v0.0.0-20200228143138-95ecdbfc0b5f/go.mod h1:AmCV4WB3cDMZqgPk+OUQKumliiQS4ZYsBt3AXekyuAU=
|
||||||
|
github.com/mibk/dupl v1.0.0 h1:aZc3jqrF9n0tUHwHt/+jsRxA8cRgA0Gdl56M7W7PoqE=
|
||||||
|
github.com/mibk/dupl v1.0.0/go.mod h1:pCr4pNxxIbFGvtyCOi0c7LVjmV6duhKWV+ex5vh38ME=
|
||||||
github.com/opennota/check v0.0.0-20180911053232-0c771f5545ff h1:lRHufowVGvUvxGsPveAZOpSa/9T5Gpxg6d7UbHCA9MQ=
|
github.com/opennota/check v0.0.0-20180911053232-0c771f5545ff h1:lRHufowVGvUvxGsPveAZOpSa/9T5Gpxg6d7UbHCA9MQ=
|
||||||
github.com/opennota/check v0.0.0-20180911053232-0c771f5545ff/go.mod h1:tydB+MZxWpY8M/NRu7jQhND/mXuLAPsKcSV6JkzofsA=
|
github.com/opennota/check v0.0.0-20180911053232-0c771f5545ff/go.mod h1:tydB+MZxWpY8M/NRu7jQhND/mXuLAPsKcSV6JkzofsA=
|
||||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||||
|
|
|
@ -11,7 +11,7 @@ var (
|
||||||
|
|
||||||
// Window scrolling behavior in Play Mode.
|
// Window scrolling behavior in Play Mode.
|
||||||
ScrollboxHoz = 256 // horizontal px from window border to start scrol
|
ScrollboxHoz = 256 // horizontal px from window border to start scrol
|
||||||
ScrollboxVert = 128
|
ScrollboxVert = 160
|
||||||
|
|
||||||
// Player speeds
|
// Player speeds
|
||||||
PlayerMaxVelocity float64 = 6
|
PlayerMaxVelocity float64 = 6
|
||||||
|
|
Loading…
Reference in New Issue
Block a user