Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/judahsan/echoes_of_elysium-godot-port
https://github.com/judahsan/echoes_of_elysium-godot-port
godot4 wip-do-not-play
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/judahsan/echoes_of_elysium-godot-port
- Owner: JudahSan
- License: mit
- Created: 2024-08-03T15:53:46.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-09T01:28:55.000Z (3 months ago)
- Last Synced: 2024-08-09T02:46:36.282Z (3 months ago)
- Topics: godot4, wip-do-not-play
- Language: GDScript
- Homepage: https://judahsan.itch.io/echoes-of-elysium
- Size: 4.65 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Project Readme
-Create Main Menu
-1. Create new scene of type `User Interface`
2. Add Buttons. Located in side the cotrol node
3. Style buttons and add background image
4. Create a menu.gb script and Code button functionality```gd
extends Controlfunc _on_play_pressed():
get_tree().change_scene_to_file("res://scenes/menu.tscn")func _on_options_pressed():
pass # Replace with function body.func _on_quit_pressed():
get_tree().quit()```