1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-05-07 05:54:49 -04:00
dressupzack/scenes/game.tscn
Anthony Foxclaw 8e31326609 Added sound effects from Kenny
- Added sound effects from Kenny for when varies buttons are pressed so it's no longer a totally silent game
- Swapped old fonts for Kenny's fonts
- Renamed music directory to sounds and removed old imports
- Removed docs page
2020-06-28 13:26:28 -04:00

70 lines
2.2 KiB
Text

[gd_scene load_steps=10 format=2]
[ext_resource path="res://scenes/characterBase.tscn" type="PackedScene" id=1]
[ext_resource path="res://sprites/clothes/background.svg" type="Texture" id=2]
[ext_resource path="res://sprites/ui/blue_boxCross.png" type="Texture" id=3]
[ext_resource path="res://scenes/wardrobe.tscn" type="PackedScene" id=4]
[ext_resource path="res://sprites/clothes/icrazy_frame.svg" type="Texture" id=5]
[ext_resource path="res://sprites/clothes/lights.png" type="Texture" id=6]
[ext_resource path="res://sprites/ui/grey_boxCross.png" type="Texture" id=7]
[ext_resource path="res://scripts/ui.gd" type="Script" id=8]
[ext_resource path="res://sounds/select_006.ogg" type="AudioStream" id=9]
[node name="game" type="Node2D"]
[node name="background" type="Sprite" parent="."]
position = Vector2( 504.046, 202.426 )
texture = ExtResource( 2 )
[node name="picFrame" type="Sprite" parent="."]
position = Vector2( 127.602, 96.8945 )
texture = ExtResource( 5 )
__meta__ = {
"_edit_group_": true
}
[node name="light" type="Light2D" parent="picFrame"]
position = Vector2( 35.118, -14.56 )
texture = ExtResource( 6 )
[node name="characterBase" parent="." instance=ExtResource( 1 )]
position = Vector2( 126.596, 319.219 )
[node name="ui" type="CanvasLayer" parent="."]
[node name="base" type="Control" parent="ui"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 8 )
__meta__ = {
"_edit_lock_": true,
"_edit_use_anchors_": true
}
[node name="wardrobe" parent="ui/base" instance=ExtResource( 4 )]
anchor_left = 0.345
anchor_top = 0.072
anchor_right = 0.975
anchor_bottom = 0.658
margin_left = -4.69434
margin_top = -19.9716
margin_right = 60.3057
margin_bottom = 75.0284
[node name="clearBtn" type="TextureButton" parent="ui/base"]
margin_left = 752.0
margin_top = 9.0
margin_right = 788.0
margin_bottom = 45.0
hint_tooltip = "Clear all clothing"
texture_normal = ExtResource( 3 )
texture_pressed = ExtResource( 3 )
texture_hover = ExtResource( 7 )
texture_disabled = ExtResource( 7 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="clear" type="AudioStreamPlayer" parent="ui/base"]
stream = ExtResource( 9 )
[connection signal="pressed" from="ui/base/clearBtn" to="ui/base" method="_on_clearBtn_pressed"]