Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
WLHQ authored Feb 19, 2023
1 parent f714be0 commit deeef3f
Show file tree
Hide file tree
Showing 12 changed files with 258 additions and 0 deletions.
Binary file added Assets/Fonts/NINTENDOSWITCHUI.TTF
Binary file not shown.
152 changes: 152 additions & 0 deletions Assets/Scripts/Main.gd
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 added Assets/Sounds/Logo01 (Click Only).wav
Binary file not shown.
23 changes: 23 additions & 0 deletions Assets/Sounds/Logo01 (Click Only).wav.import
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 added Assets/Sounds/Move Selector.wav
Binary file not shown.
23 changes: 23 additions & 0 deletions Assets/Sounds/Move Selector.wav.import
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 added Assets/Sounds/Select User.wav
Binary file not shown.
23 changes: 23 additions & 0 deletions Assets/Sounds/Select User.wav.import
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 added Assets/Sounds/standby.wav
Binary file not shown.
23 changes: 23 additions & 0 deletions Assets/Sounds/standby.wav.import
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
7 changes: 7 additions & 0 deletions Assets/Themes/Footer.tres
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 )
7 changes: 7 additions & 0 deletions Assets/Themes/ProfileIcon.tres
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 )

0 comments on commit deeef3f

Please sign in to comment.