-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCell.tscn
51 lines (41 loc) · 1.3 KB
/
Cell.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
[gd_scene load_steps=4 format=3 uid="uid://d4akemkim22v8"]
[ext_resource type="Script" path="res://Cell.cs" id="1_sqxqa"]
[ext_resource type="Script" path="res://Circle.cs" id="2_pj3fs"]
[sub_resource type="RectangleShape2D" id="RectangleShape2D_8s1qe"]
size = Vector2(120, 120)
[node name="Cell" type="Area2D"]
position = Vector2(60, 60)
script = ExtResource("1_sqxqa")
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource("RectangleShape2D_8s1qe")
[node name="Circle" type="Node2D" parent="."]
visible = false
script = ExtResource("2_pj3fs")
Radius = 30.0
Width = 10.0
[node name="Highlight" type="Node2D" parent="."]
visible = false
script = ExtResource("2_pj3fs")
Radius = 10.0
Width = 5.0
Color = Color(0, 0.231373, 0.396078, 1)
[node name="Cross" type="Node2D" parent="."]
visible = false
[node name="Line2D" type="Line2D" parent="Cross"]
points = PackedVector2Array(-30, 30, 30, -30)
[node name="Line2D2" type="Line2D" parent="Cross"]
points = PackedVector2Array(30, 30, -30, -30)
[node name="Score" type="Label" parent="."]
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -14.0
offset_top = -11.5
offset_right = 14.0
offset_bottom = 11.5
grow_horizontal = 2
grow_vertical = 2
horizontal_alignment = 1
vertical_alignment = 1