pong/pong.tscn

43 lines
1.0 KiB
Plaintext
Raw Normal View History

2017-09-02 01:10:07 +01:00
[gd_scene load_steps=7 format=2]
2017-09-01 18:40:21 +01:00
[ext_resource path="res://pong.vs" type="Script" id=1]
[ext_resource path="res://left_pallete.png" type="Texture" id=2]
[ext_resource path="res://right_pallete.png" type="Texture" id=3]
[ext_resource path="res://separator.png" type="Texture" id=4]
[ext_resource path="res://ball.png" type="Texture" id=5]
2017-09-02 01:10:07 +01:00
[ext_resource path="res://bounce1.wav" type="AudioStream" id=6]
2017-09-01 18:40:21 +01:00
[node name="Node2D" type="Node2D"]
script = ExtResource( 1 )
2017-09-01 18:40:21 +01:00
[node name="left_pallete" type="Sprite" parent="."]
2017-09-02 00:57:12 +01:00
position = Vector2( 70, 200 )
texture = ExtResource( 2 )
2017-09-01 18:40:21 +01:00
[node name="right_pallete" type="Sprite" parent="."]
2017-09-02 00:57:12 +01:00
position = Vector2( 570, 200 )
texture = ExtResource( 3 )
2017-09-01 18:40:21 +01:00
[node name="separator" type="Sprite" parent="."]
2017-09-02 00:57:12 +01:00
position = Vector2( 310, 200 )
texture = ExtResource( 4 )
2017-09-01 18:40:21 +01:00
[node name="ball" type="Sprite" parent="."]
2017-09-02 00:57:12 +01:00
position = Vector2( 310, 200 )
texture = ExtResource( 5 )
2017-09-01 18:40:21 +01:00
2017-09-02 01:10:07 +01:00
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 6 )
volume_db = 5.0
autoplay = false
mix_target = 0
bus = "Master"
2017-09-01 18:40:21 +01:00