34 lines
841 B
Plaintext
34 lines
841 B
Plaintext
[gd_scene load_steps=6 format=2]
|
|
|
|
[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]
|
|
|
|
[node name="Node2D" type="Node2D"]
|
|
|
|
script = ExtResource( 1 )
|
|
|
|
[node name="left_pallete" type="Sprite" parent="."]
|
|
|
|
position = Vector2( 70, 200 )
|
|
texture = ExtResource( 2 )
|
|
|
|
[node name="right_pallete" type="Sprite" parent="."]
|
|
|
|
position = Vector2( 570, 200 )
|
|
texture = ExtResource( 3 )
|
|
|
|
[node name="separator" type="Sprite" parent="."]
|
|
|
|
position = Vector2( 310, 200 )
|
|
texture = ExtResource( 4 )
|
|
|
|
[node name="ball" type="Sprite" parent="."]
|
|
|
|
position = Vector2( 310, 200 )
|
|
texture = ExtResource( 5 )
|
|
|
|
|