summaryrefslogtreecommitdiff
path: root/Reusable Scenes/number_node.tscn
blob: 95645058190b3bb3d6c8ef22378cf30dd3df1569 (plain)
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
[gd_scene load_steps=7 format=3 uid="uid://ccvoi0qmvlxmj"]

[ext_resource type="Script" path="res://Scripts/NumberNode.gd" id="1_7p1bu"]
[ext_resource type="Texture2D" uid="uid://cckv0u0uvmp6p" path="res://icon.svg" id="2_d46p4"]
[ext_resource type="Script" path="res://Scripts/NumberArea.gd" id="3_2viuw"]

[sub_resource type="RectangleShape2D" id="RectangleShape2D_ld6aj"]
size = Vector2(66, 66)

[sub_resource type="CircleShape2D" id="CircleShape2D_mh4p4"]
radius = 29.41

[sub_resource type="CircleShape2D" id="CircleShape2D_y33cg"]
radius = 130.8

[node name="NumberNode" type="Node2D" node_paths=PackedStringArray("label", "label_modifier", "sprite", "sprite_modifier")]
script = ExtResource("1_7p1bu")
label = NodePath("Label")
label_modifier = NodePath("Label2")
sprite = NodePath("Sprite2D")
sprite_modifier = NodePath("Sprite2D2")

[node name="Area2D" type="Area2D" parent="."]
script = ExtResource("3_2viuw")

[node name="CollisionShape2D" type="CollisionShape2D" parent="Area2D"]
shape = SubResource("RectangleShape2D_ld6aj")

[node name="ShapeCast2D" type="ShapeCast2D" parent="."]
shape = SubResource("CircleShape2D_mh4p4")
target_position = Vector2(0, 0)
collide_with_areas = true

[node name="ShapeCast2D2" type="ShapeCast2D" parent="."]
shape = SubResource("CircleShape2D_y33cg")
target_position = Vector2(0, 0)
collide_with_areas = true

[node name="Sprite2D" type="Sprite2D" parent="."]
modulate = Color(0, 0, 0, 1)
scale = Vector2(0.3, 0.3)
texture = ExtResource("2_d46p4")

[node name="Sprite2D2" type="Sprite2D" parent="."]
modulate = Color(1, 0, 0, 1)
position = Vector2(19, -17)
scale = Vector2(0.26, 0.11)
texture = ExtResource("2_d46p4")

[node name="Label" type="Label" parent="."]
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -20.0
offset_top = -19.0
offset_right = 20.0
offset_bottom = 19.0
grow_horizontal = 2
grow_vertical = 2
text = "X"
horizontal_alignment = 1
vertical_alignment = 1

[node name="Label2" type="Label" parent="."]
anchors_preset = 2
anchor_top = 1.0
anchor_bottom = 1.0
offset_left = 3.0
offset_top = -24.0
offset_right = 35.0
offset_bottom = -10.0
grow_vertical = 0
theme_override_font_sizes/font_size = 10
text = "X"
horizontal_alignment = 1
vertical_alignment = 1

[connection signal="mouse_entered" from="Area2D" to="Area2D" method="_on_mouse_entered"]
[connection signal="mouse_exited" from="Area2D" to="Area2D" method="_on_mouse_exited"]