-
Notifications
You must be signed in to change notification settings - Fork 0
/
Row.tscn
24 lines (18 loc) · 837 Bytes
/
Row.tscn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[gd_scene load_steps=5 format=2]
[ext_resource path="res://Row.gd" type="Script" id=1]
[ext_resource path="res://Seat.tscn" type="PackedScene" id=2]
[ext_resource path="res://assets/sounds/placing.wav" type="AudioStream" id=3]
[ext_resource path="res://assets/sounds/clearing.wav" type="AudioStream" id=4]
[node name="Row" type="HBoxContainer" groups=["stadium_row"]]
margin_right = 1200.0
margin_bottom = 128.0
custom_constants/separation = 4
script = ExtResource( 1 )
Seat = ExtResource( 2 )
[node name="ClearedTimer" type="Timer" parent="."]
one_shot = true
[node name="PlacingSound" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 3 )
[node name="ClearingSound" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 4 )
[connection signal="timeout" from="ClearedTimer" to="." method="_on_ClearedTimer_timeout"]