Get the latest release on itch: https://seedstone.itch.io/knock-the-rock
To build in linux download Godot and set the environment variable GODOT
to point to your Godot executable.
export GODOT=<path to your Godot application>
Then run the script make.sh
in the repository.
Version string is done in ktr/version_number.txt
and dev/release state is set in ktr/Globals.gd
Here is the process for adding a setting to the game:
Settings.tscn
SettingsConfig.gd
default_settings.tres
panel_knobs_to_resource
and resource_to_panel_knobs
in Settings.gd
Strings.gd
and then update setup_ui_labels
in Settings.gd
Globals.load_settings_config()
, or via $Overlays/Settings.settings_config
if working from MenuScreen.tscn