-
Notifications
You must be signed in to change notification settings - Fork 2
/
World.tscn
79 lines (60 loc) · 1.91 KB
/
World.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[gd_scene load_steps=6 format=1]
[ext_resource path="res://Pong/World.gd" type="Script" id=1]
[ext_resource path="res://Pong/resources/img/left-pallete.png" type="Texture" id=2]
[ext_resource path="res://Pong/resources/img/right-pallete.png" type="Texture" id=3]
[ext_resource path="res://Pong/resources/img/ball.png" type="Texture" id=4]
[ext_resource path="res://Pong/resources/img/separator.png" type="Texture" id=5]
[node name="World" type="Node2D"]
script/script = ExtResource( 1 )
[node name="RichTextLabel" type="RichTextLabel" parent="."]
rect/scale = Vector2( 4, 4 )
focus/ignore_mouse = false
focus/stop_mouse = true
size_flags/horizontal = 2
size_flags/vertical = 2
margin/left = 317.0
margin/top = 194.0
margin/right = 417.0
margin/bottom = 214.0
bbcode/enabled = false
bbcode/bbcode = ""
visible_characters = -1
percent_visible = 1.0
[node name="leftPlayer" type="Sprite" parent="."]
transform/pos = Vector2( 40, 200 )
texture = ExtResource( 2 )
[node name="rightPlayer" type="Sprite" parent="."]
transform/pos = Vector2( 600, 200 )
texture = ExtResource( 3 )
[node name="ball" type="Sprite" parent="."]
transform/pos = Vector2( 320, 200 )
texture = ExtResource( 4 )
[node name="seperator" type="Sprite" parent="."]
transform/pos = Vector2( 320, 200 )
texture = ExtResource( 5 )
[node name="leftScore" type="RichTextLabel" parent="."]
focus/ignore_mouse = false
focus/stop_mouse = true
size_flags/horizontal = 2
size_flags/vertical = 2
margin/left = 20.0
margin/top = 8.0
margin/right = 60.0
margin/bottom = 48.0
bbcode/enabled = false
bbcode/bbcode = ""
visible_characters = -1
percent_visible = 1.0
[node name="rightScore" type="RichTextLabel" parent="."]
focus/ignore_mouse = false
focus/stop_mouse = true
size_flags/horizontal = 2
size_flags/vertical = 2
margin/left = 599.0
margin/top = 6.0
margin/right = 639.0
margin/bottom = 46.0
bbcode/enabled = false
bbcode/bbcode = ""
visible_characters = -1
percent_visible = 1.0