summaryrefslogtreecommitdiff
path: root/Units/Unit.tscn
blob: 7e6acbcfbb5cfcf56434f865989065c28caa1ccb (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
82
83
84
85
86
87
88
89
90
91
92
[gd_scene load_steps=9 format=3 uid="uid://cslaufgh6ber3"]

[ext_resource type="Script" path="res://Units/Unit.gd" id="1_bbcew"]
[ext_resource type="Texture2D" uid="uid://dsy7k2v5fhh6v" path="res://Assets/Mobs/angesnow-front.png" id="2_rxqq1"]
[ext_resource type="PackedScene" uid="uid://bjcrf4o4a80iv" path="res://UI/HPBar.tscn" id="3_e777u"]
[ext_resource type="PackedScene" uid="uid://cifs0kcy5r0x2" path="res://Units/UnitPathLine.tscn" id="4_r0qfv"]

[sub_resource type="RectangleShape2D" id="RectangleShape2D_1cqix"]
size = Vector2(3, 3)

[sub_resource type="RectangleShape2D" id="RectangleShape2D_iaxxs"]
size = Vector2(8, 8)

[sub_resource type="RectangleShape2D" id="RectangleShape2D_o5ax3"]
size = Vector2(16, 16)

[sub_resource type="SceneReplicationConfig" id="SceneReplicationConfig_0buot"]
properties/0/path = NodePath(".:position")
properties/0/spawn = true
properties/0/replication_mode = 2
properties/1/path = NodePath(".:hp")
properties/1/spawn = true
properties/1/replication_mode = 2
properties/2/path = NodePath("Sprite2D:self_modulate")
properties/2/spawn = true
properties/2/replication_mode = 2
properties/3/path = NodePath(".:owner_id")
properties/3/spawn = true
properties/3/replication_mode = 0
properties/4/path = NodePath("Sprite2D:modulate")
properties/4/spawn = true
properties/4/replication_mode = 2

[node name="Unit" type="CharacterBody2D"]
y_sort_enabled = true
collision_mask = 4
input_pickable = true
script = ExtResource("1_bbcew")

[node name="Sprite2D" type="Sprite2D" parent="."]
texture_filter = 1
scale = Vector2(0.5, 0.5)
texture = ExtResource("2_rxqq1")
region_rect = Rect2(480, 880, 96, 64)

[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource("RectangleShape2D_1cqix")

[node name="NavigationBase" type="Area2D" parent="." groups=["mob_navigation_base"]]
collision_mask = 2

[node name="CollisionShape2D" type="CollisionShape2D" parent="NavigationBase"]
shape = SubResource("RectangleShape2D_iaxxs")

[node name="HPBar" parent="." instance=ExtResource("3_e777u")]
unique_name_in_owner = true
offset_left = -10.0
offset_top = -11.0
offset_right = 10.0
offset_bottom = -9.0

[node name="Label" type="Label" parent="."]
visible = false
offset_left = -9.0
offset_top = 12.0
offset_right = 10.0
offset_bottom = 24.0
theme_override_font_sizes/font_size = 8
text = "1000"
horizontal_alignment = 1

[node name="SelectionArea" type="Area2D" parent="."]
collision_layer = 32
collision_mask = 0

[node name="CollisionShape2D" type="CollisionShape2D" parent="SelectionArea"]
shape = SubResource("RectangleShape2D_o5ax3")

[node name="UnitPathLine" parent="." instance=ExtResource("4_r0qfv")]
visible = false
width = 1.0
default_color = Color(1, 1, 1, 0.392157)
target_circle_radius = 4.0

[node name="MultiplayerSynchronizer" type="MultiplayerSynchronizer" parent="."]
replication_config = SubResource("SceneReplicationConfig_0buot")

[connection signal="tree_exiting" from="." to="." method="_on_tree_exiting"]
[connection signal="area_entered" from="NavigationBase" to="." method="_on_navigation_base_area_entered"]
[connection signal="input_event" from="SelectionArea" to="." method="_on_selection_area_input_event"]
[connection signal="mouse_entered" from="SelectionArea" to="." method="_on_selection_area_mouse_entered"]
[connection signal="mouse_exited" from="SelectionArea" to="." method="_on_selection_area_mouse_exited"]