This repository has been archived by the owner on Sep 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.tscn
56 lines (44 loc) · 1.46 KB
/
Main.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
[gd_scene load_steps=5 format=2]
[ext_resource path="res://Main.gd" type="Script" id=1]
[ext_resource path="res://HealthPolygon.gd" type="Script" id=2]
[sub_resource type="StyleBoxFlat" id=1]
bg_color = Color( 0.811765, 0.541176, 0.192157, 1 )
[sub_resource type="StyleBoxEmpty" id=2]
[node name="Main" type="Node2D"]
script = ExtResource( 1 )
[node name="GUI" type="CanvasLayer" parent="."]
[node name="Health" type="Node2D" parent="GUI"]
[node name="Polygon3" type="Polygon2D" parent="GUI/Health"]
position = Vector2( 80, 20 )
color = Color( 0.415686, 0.858824, 0.109804, 1 )
antialiased = true
script = ExtResource( 2 )
[node name="Polygon2" type="Polygon2D" parent="GUI/Health"]
position = Vector2( 50, 20 )
color = Color( 0.415686, 0.858824, 0.109804, 1 )
antialiased = true
script = ExtResource( 2 )
[node name="Polygon" type="Polygon2D" parent="GUI/Health"]
position = Vector2( 20, 20 )
color = Color( 0.415686, 0.858824, 0.109804, 1 )
antialiased = true
script = ExtResource( 2 )
[node name="Progress" type="ProgressBar" parent="GUI"]
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
margin_top = -14.0
custom_styles/fg = SubResource( 1 )
custom_styles/bg = SubResource( 2 )
percent_visible = false
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label" type="Label" parent="GUI/Progress"]
anchor_right = 1.0
anchor_bottom = 1.0
custom_colors/font_color = Color( 0, 0, 0, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Pivot" type="Node" parent="."]