Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 Control

func _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()

```