38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
[gd_scene load_steps=6 format=2]
|
|
|
|
[ext_resource path="res://wall.gd" type="Script" id=1]
|
|
[ext_resource path="res://art/wall.png" type="Texture" id=2]
|
|
[ext_resource path="res://sfx/wall_move.wav" type="AudioStream" id=3]
|
|
[ext_resource path="res://sfx/wall_stopped.wav" type="AudioStream" id=4]
|
|
|
|
[sub_resource type="RectangleShape2D" id=1]
|
|
extents = Vector2( 29.8667, 16 )
|
|
|
|
[node name="Wall" type="StaticBody2D"]
|
|
script = ExtResource( 1 )
|
|
|
|
[node name="Sprite" type="Sprite" parent="."]
|
|
visible = false
|
|
texture = ExtResource( 2 )
|
|
centered = false
|
|
|
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
|
position = Vector2( 32, 16 )
|
|
shape = SubResource( 1 )
|
|
|
|
[node name="Tween" type="Tween" parent="."]
|
|
|
|
[node name="Timer" type="Timer" parent="."]
|
|
one_shot = true
|
|
|
|
[node name="move_sfx" type="AudioStreamPlayer" parent="."]
|
|
stream = ExtResource( 3 )
|
|
volume_db = -10.0
|
|
|
|
[node name="stop_sfx" type="AudioStreamPlayer" parent="."]
|
|
stream = ExtResource( 4 )
|
|
volume_db = -10.0
|
|
|
|
[connection signal="tween_completed" from="Tween" to="." method="_on_Tween_tween_completed"]
|
|
[connection signal="timeout" from="Timer" to="." method="_on_Timer_timeout"]
|