2020-11-20 04:08:38 +00:00
|
|
|
package balance
|
|
|
|
|
|
|
|
// Feature Flags to turn on/off experimental content.
|
|
|
|
var Feature = feature{
|
WIP Publish Dialog + UI Improvements
* File->Publish Level in the Level Editor opens the Publish window,
where you can embed custom doodads into your level and export a
portable .level file you can share with others.
* Currently does not actually export a level file yet.
* The dialog lists all unique doodad names in use in your level, and
designates which are built-ins and which are custom (paginated).
* A checkbox would let the user embed built-in doodads into their level,
as well, locking it in to those versions and not using updated
versions from future game releases.
UI Improvements:
* Added styling for a "Primary" UI button, rendered in deep blue.
* Pop-up modals (Alert, Confirm) color their Ok button as Primary.
* The Enter key pressed during an Alert or Confirm modal will invoke its
default button and close the modal, corresponding to its Primary
button.
* The developer console is now opened with the tilde/grave key ` instead
of the Enter key, so that the Enter key is free to click through
modals.
* In the "Open/Edit Drawing" window, a "Browse..." button is added to
the level and doodad sections, spawning a native File Open dialog to
pick a .level or .doodad outside the config root.
2021-06-11 05:31:30 +00:00
|
|
|
Zoom: false, // enable the zoom in/out feature (very buggy rn)
|
|
|
|
CustomWallpaper: true, // attach custom wallpaper img to levels
|
|
|
|
ChangePalette: false, // reset your palette after level creation to a diff preset
|
|
|
|
|
|
|
|
// Allow embedded doodads in levels.
|
|
|
|
EmbeddableDoodads: true,
|
2020-11-20 04:08:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// FeaturesOn turns on all feature flags, from CLI --experimental option.
|
|
|
|
func FeaturesOn() {
|
|
|
|
Feature.Zoom = true
|
2021-06-06 21:32:52 +00:00
|
|
|
Feature.CustomWallpaper = true
|
2021-06-06 03:50:56 +00:00
|
|
|
Feature.ChangePalette = true
|
2020-11-20 04:08:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type feature struct {
|
|
|
|
Zoom bool
|
2021-06-06 21:32:52 +00:00
|
|
|
CustomWallpaper bool
|
2021-06-06 03:50:56 +00:00
|
|
|
ChangePalette bool
|
WIP Publish Dialog + UI Improvements
* File->Publish Level in the Level Editor opens the Publish window,
where you can embed custom doodads into your level and export a
portable .level file you can share with others.
* Currently does not actually export a level file yet.
* The dialog lists all unique doodad names in use in your level, and
designates which are built-ins and which are custom (paginated).
* A checkbox would let the user embed built-in doodads into their level,
as well, locking it in to those versions and not using updated
versions from future game releases.
UI Improvements:
* Added styling for a "Primary" UI button, rendered in deep blue.
* Pop-up modals (Alert, Confirm) color their Ok button as Primary.
* The Enter key pressed during an Alert or Confirm modal will invoke its
default button and close the modal, corresponding to its Primary
button.
* The developer console is now opened with the tilde/grave key ` instead
of the Enter key, so that the Enter key is free to click through
modals.
* In the "Open/Edit Drawing" window, a "Browse..." button is added to
the level and doodad sections, spawning a native File Open dialog to
pick a .level or .doodad outside the config root.
2021-06-11 05:31:30 +00:00
|
|
|
EmbeddableDoodads bool
|
2020-11-20 04:08:38 +00:00
|
|
|
}
|