aboutsummaryrefslogtreecommitdiff
path: root/game/src/Autoload/Events.gd
Commit message (Collapse)AuthorAgeLines
* Reorganize the file structure of the files in `game/src` Spartan3222023-06-03-45/+0
|
* Added compatibility-mode command line argument Hop3112023-05-25-7/+12
|
* Date fix + string fix + Logger queue Hop3112023-05-24-0/+2
|
* Map compatibility mode Hop3112023-05-22-2/+13
|
* GD/std string cleanup + separate data loading cpp Hop3112023-05-22-0/+1
|
* Added Goods loading + mapmode Hop3112023-05-11-16/+15
|
* Terrain textures + province colour alpha channel Hop3112023-04-29-3/+7
|
* Terrain channel for provinces + generated minimap Hop3112023-04-28-0/+2
|
* Further cleanup + reset on return to main menu Hop3112023-04-25-1/+0
|
* C++ refactoring + simulation prototype Hop3112023-04-23-4/+5
|
* Better province image + terrain + some buttons Hop3112023-04-18-1/+4
|
* Add minimap for terrain map Gone2Daly2023-04-14-0/+5
| | | | | | | | | | With accurate viewport shape display on minimap With Mapmode management With Region mapmode With Province mapmode With Index mapmode With Minimap single-click movement With Minimap drag-click movement
* Add terrain map Hop3112023-04-14-0/+9
| | | | | | | | | | | | With Directional movement using WASD With Directional movement using arrow keys With Click-Drag movement using middle mouse button With Province identifiers With Province shape loading With Province rendering With Province selection With Province overview panel With Color lookup texture
* Added Localisation (#77) Hop3112023-03-30-0/+1
| | | | | | | | | * Added Localisation * Removed `.gdignore`s. * Localisation dir path and Locale name cleanup * Incomplete entry warnings + README
* Add Keychain plugin for Controls tab (#15) George L. Albany2023-02-21-0/+3
* Add modified Keychain plugin for future Controls tab See https://github.com/Orama-Interactive/Keychain/tree/4.x Added Events autoload singleton for global eventing namespace Added Events.Options for global options functionality * Add Controls tab via Keychain plugin Use Events.Options for save, load, and reset of settings Separate OptionMenu tabs into scene files Add locale saving and loading Refactor SettingNodes scripts for more generalized use Remove random prints Remove useless spinbox signal connection Make Resolution consistently use Vector2i * Implement Godot project overrides for resolution and window mode Overrides are necessary as Godot does not load resolution or window mode on startup, so an override is necessary to ensure this happens. Add null checks to SettingHSlider and SettingOptionButton * Fix incorrect resolution value in ResolutionSelector * Correct project settings override behavior in editor Godot normally tries to overwrite the project settings in the editor, a template feature tag must be used to prevent the editor from overwriting the project.godot settings. * Fix Orama-Interactive/Keychain#8