1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-05-07 22:04:49 -04:00

Overlooked another mistake

This commit is contained in:
Anthony Wilcox 2019-01-04 20:11:01 -05:00
parent 93a70f2da9
commit bd6b7331dd
3 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@
[ext_resource path="res://Clothes.tscn" type="PackedScene" id=5]
[ext_resource path="res://Interface.tscn" type="PackedScene" id=6]
[node name="GameScreen" type="Node" index="0"]
[node name="GameScreen" type="Node"]
script = ExtResource( 1 )

View file

@ -3,7 +3,7 @@
[ext_resource path="res://src/Interface.gd" type="Script" id=1]
[ext_resource path="res://WinDialogs.tscn" type="PackedScene" id=2]
[node name="Interface" type="Control"]
[node name="Interface" type="Control" index="0"]
anchor_left = 0.0
anchor_top = 0.0

View file

@ -6,7 +6,7 @@ func _on_CreditsBtn_pressed():
$CreditsWin.show()
func _on_LicenseBtn_pressed():
$SettingsWin.show()
$LicenseWin.show()
func _on_CloseAbtBtn_pressed():
$AboutWin.hide()