-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboard.tscn
85 lines (65 loc) · 3.29 KB
/
board.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
78
79
80
81
82
83
84
85
[gd_scene load_steps=19 format=3 uid="uid://bv6jl0eqjak4n"]
[ext_resource type="Script" path="res://board.gd" id="1_bmftx"]
[ext_resource type="PackedScene" uid="uid://bdglbdtnc0v8e" path="res://blocks/locked_segment.tscn" id="2_h12aj"]
[ext_resource type="PackedScene" uid="uid://d3lxiec8frvuy" path="res://blocks/l_block_left.tscn" id="2_nww57"]
[ext_resource type="PackedScene" uid="uid://bscjijut321pq" path="res://blocks/z_block_left.tscn" id="3_5ispg"]
[ext_resource type="PackedScene" uid="uid://c4hu40kpejpnw" path="res://blocks/l_block_right.tscn" id="4_ooml7"]
[ext_resource type="PackedScene" uid="uid://m2x4umobuv65" path="res://blocks/i_block.tscn" id="4_uc2rf"]
[ext_resource type="PackedScene" uid="uid://cegspa4o2fj2c" path="res://blocks/z_block_right.tscn" id="6_7wufc"]
[ext_resource type="PackedScene" uid="uid://c3yj8o1tbgmbp" path="res://blocks/t_block.tscn" id="6_h7h6v"]
[ext_resource type="PackedScene" uid="uid://6huhus3je8yf" path="res://blocks/square_block.tscn" id="6_ujkpl"]
[sub_resource type="Gradient" id="Gradient_lkwvs"]
interpolation_mode = 1
offsets = PackedFloat32Array(1, 1)
[sub_resource type="GradientTexture2D" id="GradientTexture2D_0kisl"]
gradient = SubResource("Gradient_lkwvs")
width = 1024
height = 32
[sub_resource type="RectangleShape2D" id="RectangleShape2D_dfdln"]
size = Vector2(1024, 32)
[sub_resource type="Gradient" id="Gradient_ncnq0"]
offsets = PackedFloat32Array(1, 1, 1)
colors = PackedColorArray(0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1)
[sub_resource type="GradientTexture2D" id="GradientTexture2D_2ikfm"]
gradient = SubResource("Gradient_ncnq0")
width = 32
height = 1024
[sub_resource type="RectangleShape2D" id="RectangleShape2D_qqqy0"]
size = Vector2(32, 1024)
[sub_resource type="Gradient" id="Gradient_2lxoa"]
offsets = PackedFloat32Array(1, 1)
[sub_resource type="GradientTexture2D" id="GradientTexture2D_4kk60"]
gradient = SubResource("Gradient_2lxoa")
width = 32
height = 1024
[sub_resource type="RectangleShape2D" id="RectangleShape2D_1sf4b"]
size = Vector2(32, 1024)
[node name="Board" type="Node2D"]
script = ExtResource("1_bmftx")
locked_segment = ExtResource("2_h12aj")
l_block_left = ExtResource("2_nww57")
l_block_right = ExtResource("4_ooml7")
z_block_left = ExtResource("3_5ispg")
z_block_right = ExtResource("6_7wufc")
i_block = ExtResource("4_uc2rf")
t_block = ExtResource("6_h7h6v")
square_block = ExtResource("6_ujkpl")
[node name="Floor" type="Area2D" parent="."]
position = Vector2(2.08165e-12, 16)
[node name="Sprite2D" type="Sprite2D" parent="Floor"]
texture = SubResource("GradientTexture2D_0kisl")
[node name="CollisionShape2D" type="CollisionShape2D" parent="Floor"]
position = Vector2(2.08165e-12, 2.08165e-12)
shape = SubResource("RectangleShape2D_dfdln")
[node name="LeftWall" type="Area2D" parent="."]
position = Vector2(-528, -512)
[node name="Sprite2D" type="Sprite2D" parent="LeftWall"]
texture = SubResource("GradientTexture2D_2ikfm")
[node name="CollisionShape2D" type="CollisionShape2D" parent="LeftWall"]
shape = SubResource("RectangleShape2D_qqqy0")
[node name="RightWall" type="Area2D" parent="."]
position = Vector2(528, -512)
[node name="Sprite2D" type="Sprite2D" parent="RightWall"]
texture = SubResource("GradientTexture2D_4kk60")
[node name="CollisionShape2D" type="CollisionShape2D" parent="RightWall"]
shape = SubResource("RectangleShape2D_1sf4b")