-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMain.tscn
26 lines (20 loc) · 832 Bytes
/
Main.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
25
26
[gd_scene load_steps=6 format=2]
[ext_resource path="res://res/left_pallete.png" type="Texture" id=1]
[ext_resource path="res://res/ball.png" type="Texture" id=2]
[ext_resource path="res://res/separator.png" type="Texture" id=3]
[ext_resource path="res://res/right_pallete.png" type="Texture" id=4]
[ext_resource path="res://Main.gd" type="Script" id=5]
[node name="Main" type="Node2D"]
script = ExtResource( 5 )
[node name="left" type="Sprite" parent="."]
position = Vector2( 67, 183 )
texture = ExtResource( 1 )
[node name="right" type="Sprite" parent="."]
position = Vector2( 577, 187 )
texture = ExtResource( 4 )
[node name="separator" type="Sprite" parent="."]
position = Vector2( 320, 200 )
texture = ExtResource( 3 )
[node name="ball" type="Sprite" parent="."]
position = Vector2( 320, 188 )
texture = ExtResource( 2 )