-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
258 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
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,152 @@ | ||
extends Panel | ||
|
||
var NotImplimented = "Whoops, thats not implimented yet!" | ||
|
||
func _ready(): | ||
OS.set_window_maximized(true) | ||
|
||
func _on_UserProfileButton_mouse_entered(): | ||
var UserProfile = get_node("UserIconAspectRatioContainer/UserProfileButton/UserProfileLabel") | ||
UserProfile.show() | ||
$MoveSelectorAudio.play() | ||
|
||
func _on_UserProfileButton_mouse_exited(): | ||
var UserProfile = get_node("UserIconAspectRatioContainer/UserProfileButton/UserProfileLabel") | ||
UserProfile.hide() | ||
|
||
func _on_UserProfileButton_pressed(): | ||
OS.alert(NotImplimented) | ||
|
||
func _on_SoftwareIcon1_pressed(): | ||
OS.alert(NotImplimented) | ||
|
||
func _on_SoftwareIcon1_mouse_entered(): | ||
$MoveSelectorAudio.play() | ||
|
||
func _on_SoftwareIcon2_pressed(): | ||
OS.alert(NotImplimented) | ||
|
||
func _on_SoftwareIcon2_mouse_entered(): | ||
$MoveSelectorAudio.play() | ||
|
||
func _on_SoftwareIcon3_pressed(): | ||
OS.alert(NotImplimented) | ||
|
||
func _on_SoftwareIcon3_mouse_entered(): | ||
$MoveSelectorAudio.play() | ||
|
||
func _on_SoftwareIcon4_pressed(): | ||
OS.alert(NotImplimented) | ||
|
||
func _on_SoftwareIcon4_mouse_entered(): | ||
$MoveSelectorAudio.play() | ||
|
||
func _on_SoftwareIcon5_pressed(): | ||
OS.alert(NotImplimented) | ||
|
||
func _on_SoftwareIcon5_mouse_entered(): | ||
$MoveSelectorAudio.play() | ||
|
||
func _on_SoftwareIcon6_pressed(): | ||
OS.alert(NotImplimented) | ||
|
||
func _on_SoftwareIcon6_mouse_entered(): | ||
$MoveSelectorAudio.play() | ||
|
||
func _on_SoftwareIcon7_pressed(): | ||
OS.alert(NotImplimented) | ||
|
||
func _on_SoftwareIcon7_mouse_entered(): | ||
$MoveSelectorAudio.play() | ||
|
||
func _on_SoftwareIcon8_pressed(): | ||
OS.alert(NotImplimented) | ||
|
||
func _on_SoftwareIcon8_mouse_entered(): | ||
$MoveSelectorAudio.play() | ||
|
||
func _on_NavigationButton1_pressed(): | ||
OS.alert(NotImplimented) | ||
|
||
func _on_NavigationButton1_mouse_entered(): | ||
var NavigationButton1 = get_node("NavigationContainer/NavigationButton1/NavigationButton1Label") | ||
NavigationButton1.show() | ||
$MoveSelectorAudio.play() | ||
|
||
func _on_NavigationButton1_mouse_exited(): | ||
var NavigationButton1 = get_node("NavigationContainer/NavigationButton1/NavigationButton1Label") | ||
NavigationButton1.hide() | ||
|
||
func _on_NavigationButton2_pressed(): | ||
OS.alert(NotImplimented) | ||
|
||
func _on_NavigationButton2_mouse_entered(): | ||
var NavigationButton2 = get_node("NavigationContainer/NavigationButton2/NavigationButton1Label2") | ||
NavigationButton2.show() | ||
$MoveSelectorAudio.play() | ||
|
||
func _on_NavigationButton2_mouse_exited(): | ||
var NavigationButton2 = get_node("NavigationContainer/NavigationButton2/NavigationButton1Label2") | ||
NavigationButton2.hide() | ||
|
||
func _on_NavigationButton3_pressed(): | ||
OS.alert(NotImplimented) | ||
|
||
func _on_NavigationButton3_mouse_entered(): | ||
var NavigationButton3 = get_node("NavigationContainer/NavigationButton3/NavigationButton1Label3") | ||
NavigationButton3.show() | ||
$MoveSelectorAudio.play() | ||
|
||
func _on_NavigationButton3_mouse_exited(): | ||
var NavigationButton3 = get_node("NavigationContainer/NavigationButton3/NavigationButton1Label3") | ||
NavigationButton3.hide() | ||
|
||
func _on_NavigationButton4_pressed(): | ||
OS.alert(NotImplimented) | ||
|
||
func _on_NavigationButton4_mouse_entered(): | ||
var NavigationButton4 = get_node("NavigationContainer/NavigationButton4/NavigationButton1Label4") | ||
NavigationButton4.show() | ||
$MoveSelectorAudio.play() | ||
|
||
func _on_NavigationButton4_mouse_exited(): | ||
var NavigationButton4 = get_node("NavigationContainer/NavigationButton4/NavigationButton1Label4") | ||
NavigationButton4.hide() | ||
|
||
func _on_NavigationButton5_pressed(): | ||
OS.alert(NotImplimented) | ||
|
||
func _on_NavigationButton5_mouse_entered(): | ||
var NavigationButton5 = get_node("NavigationContainer/NavigationButton5/NavigationButton1Label5") | ||
NavigationButton5.show() | ||
$MoveSelectorAudio.play() | ||
|
||
func _on_NavigationButton5_mouse_exited(): | ||
var NavigationButton5 = get_node("NavigationContainer/NavigationButton5/NavigationButton1Label5") | ||
NavigationButton5.hide() | ||
|
||
func _on_NavigationButton6_pressed(): | ||
OS.alert(NotImplimented) | ||
|
||
func _on_NavigationButton6_mouse_entered(): | ||
var NavigationButton6 = get_node("NavigationContainer/NavigationButton6/NavigationButton1Label6") | ||
NavigationButton6.show() | ||
$MoveSelectorAudio.play() | ||
|
||
func _on_NavigationButton6_mouse_exited(): | ||
var NavigationButton6 = get_node("NavigationContainer/NavigationButton6/NavigationButton1Label6") | ||
NavigationButton6.hide() | ||
|
||
func _on_NavigationButton7_pressed(): | ||
$StandbyAudio.play() | ||
yield(get_tree().create_timer(0.5), "timeout") | ||
OS.kill(OS.get_process_id()) | ||
|
||
func _on_NavigationButton7_mouse_entered(): | ||
var NavigationButton7 = get_node("NavigationContainer/NavigationButton7/NavigationButton1Label7") | ||
NavigationButton7.show() | ||
$MoveSelectorAudio.play() | ||
|
||
func _on_NavigationButton7_mouse_exited(): | ||
var NavigationButton7 = get_node("NavigationContainer/NavigationButton7/NavigationButton1Label7") | ||
NavigationButton7.hide() |
Binary file not shown.
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,23 @@ | ||
[remap] | ||
|
||
importer="wav" | ||
type="AudioStreamSample" | ||
path="res://.import/Logo01 (Click Only).wav-5cb52c17ac67e2ad1aa447e93abb5f49.sample" | ||
|
||
[deps] | ||
|
||
source_file="res://Assets/Sounds/Logo01 (Click Only).wav" | ||
dest_files=[ "res://.import/Logo01 (Click Only).wav-5cb52c17ac67e2ad1aa447e93abb5f49.sample" ] | ||
|
||
[params] | ||
|
||
force/8_bit=false | ||
force/mono=false | ||
force/max_rate=false | ||
force/max_rate_hz=44100 | ||
edit/trim=false | ||
edit/normalize=false | ||
edit/loop_mode=0 | ||
edit/loop_begin=0 | ||
edit/loop_end=-1 | ||
compress/mode=0 |
Binary file not shown.
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,23 @@ | ||
[remap] | ||
|
||
importer="wav" | ||
type="AudioStreamSample" | ||
path="res://.import/Move Selector.wav-0955121e775527a388945b8c7842b4fe.sample" | ||
|
||
[deps] | ||
|
||
source_file="res://Assets/Sounds/Move Selector.wav" | ||
dest_files=[ "res://.import/Move Selector.wav-0955121e775527a388945b8c7842b4fe.sample" ] | ||
|
||
[params] | ||
|
||
force/8_bit=false | ||
force/mono=false | ||
force/max_rate=false | ||
force/max_rate_hz=44100 | ||
edit/trim=false | ||
edit/normalize=false | ||
edit/loop_mode=0 | ||
edit/loop_begin=0 | ||
edit/loop_end=-1 | ||
compress/mode=0 |
Binary file not shown.
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,23 @@ | ||
[remap] | ||
|
||
importer="wav" | ||
type="AudioStreamSample" | ||
path="res://.import/Select User.wav-8fee106aa77ca583fde435f45d5f2bde.sample" | ||
|
||
[deps] | ||
|
||
source_file="res://Assets/Sounds/Select User.wav" | ||
dest_files=[ "res://.import/Select User.wav-8fee106aa77ca583fde435f45d5f2bde.sample" ] | ||
|
||
[params] | ||
|
||
force/8_bit=false | ||
force/mono=false | ||
force/max_rate=false | ||
force/max_rate_hz=44100 | ||
edit/trim=false | ||
edit/normalize=false | ||
edit/loop_mode=0 | ||
edit/loop_begin=0 | ||
edit/loop_end=-1 | ||
compress/mode=0 |
Binary file not shown.
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,23 @@ | ||
[remap] | ||
|
||
importer="wav" | ||
type="AudioStreamSample" | ||
path="res://.import/standby.wav-6cc9986fb4d5f3bd8413c7a6b46e607d.sample" | ||
|
||
[deps] | ||
|
||
source_file="res://Assets/Sounds/standby.wav" | ||
dest_files=[ "res://.import/standby.wav-6cc9986fb4d5f3bd8413c7a6b46e607d.sample" ] | ||
|
||
[params] | ||
|
||
force/8_bit=false | ||
force/mono=false | ||
force/max_rate=false | ||
force/max_rate_hz=44100 | ||
edit/trim=false | ||
edit/normalize=false | ||
edit/loop_mode=0 | ||
edit/loop_begin=0 | ||
edit/loop_end=-1 | ||
compress/mode=0 |
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,7 @@ | ||
[gd_resource type="Theme" load_steps=2 format=2] | ||
|
||
[sub_resource type="StyleBoxLine" id=1] | ||
color = Color( 0.415686, 0.415686, 0.415686, 1 ) | ||
|
||
[resource] | ||
HSeparator/styles/separator = SubResource( 1 ) |
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,7 @@ | ||
[gd_resource type="DynamicFont" load_steps=2 format=2] | ||
|
||
[ext_resource path="res://Assets/Fonts/NINTENDOSWITCHUI.TTF" type="DynamicFontData" id=1] | ||
|
||
[resource] | ||
size = 20 | ||
font_data = ExtResource( 1 ) |