-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added a clock to the main scene - Added a secret credits screen on the main scene (press the logo) - Added a simple alert message test to the main scene - Added a time and date section to the main scene
- Loading branch information
1 parent
5454228
commit b675359
Showing
5 changed files
with
647 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[gd_scene load_steps=2 format=2] | ||
|
||
[sub_resource type="GDScript" id=1] | ||
resource_name = "CreditsBox" | ||
script/source = "extends PanelContainer | ||
|
||
func toggled(state: bool): | ||
self.visible = state | ||
" | ||
|
||
[node name="CreditsBox" type="PanelContainer"] | ||
margin_top = 267.0 | ||
margin_right = 235.0 | ||
margin_bottom = 381.0 | ||
script = SubResource( 1 ) | ||
|
||
[node name="VBoxContainer" type="VBoxContainer" parent="."] | ||
margin_left = 7.0 | ||
margin_top = 7.0 | ||
margin_right = 228.0 | ||
margin_bottom = 107.0 | ||
|
||
[node name="Header" type="Label" parent="VBoxContainer"] | ||
margin_right = 221.0 | ||
margin_bottom = 14.0 | ||
text = "Hombrodot was brought to you by:" | ||
align = 1 | ||
valign = 1 | ||
|
||
[node name="Members" type="Label" parent="VBoxContainer"] | ||
margin_top = 18.0 | ||
margin_right = 221.0 | ||
margin_bottom = 100.0 | ||
text = "Caroline - @halotroop2288 | ||
Claire - @hokaze | ||
Jaylon - @SonicMastr | ||
Chloe - Stary2001 | ||
@technicaljicama" | ||
align = 1 | ||
valign = 1 |
Oops, something went wrong.