pegchamp/HUD/HUD.tscn

68 lines
1.6 KiB
Text
Raw Normal View History

2021-11-28 13:51:08 +00:00
[gd_scene load_steps=7 format=2]
2021-09-08 08:27:14 +00:00
[ext_resource path="res://Ball/sprite.png" type="Texture" id=1]
[ext_resource path="res://HUD/BallCounter.gd" type="Script" id=2]
2021-10-01 14:23:48 +00:00
[ext_resource path="res://HUD/Multiplier.gd" type="Script" id=3]
[ext_resource path="res://Menu/Theme.tres" type="Theme" id=4]
[ext_resource path="res://HUD/Score.gd" type="Script" id=5]
2021-11-28 13:51:08 +00:00
[ext_resource path="res://HUD/PinksLabel.gd" type="Script" id=6]
2021-09-08 08:27:14 +00:00
[node name="HUD" type="CanvasLayer"]
[node name="Control" type="Control" parent="."]
margin_right = 40.0
margin_bottom = 40.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="BallCounter" type="Sprite" parent="Control"]
z_index = 100
texture = ExtResource( 1 )
centered = false
region_enabled = true
region_rect = Rect2( 0, 0, 16, 16 )
script = ExtResource( 2 )
2021-10-01 14:23:48 +00:00
[node name="Multiplier" type="Label" parent="."]
margin_left = 336.0
2021-11-28 13:51:08 +00:00
margin_top = 170.0
2021-10-01 14:23:48 +00:00
margin_right = 376.0
2021-11-28 13:51:08 +00:00
margin_bottom = 188.0
2021-10-01 14:23:48 +00:00
grow_horizontal = 0
grow_vertical = 0
theme = ExtResource( 4 )
text = "x 1"
align = 2
script = ExtResource( 3 )
__meta__ = {
"_edit_use_anchors_": false
}
2021-11-28 13:51:08 +00:00
[node name="PinksLabel" type="Label" parent="."]
margin_left = 16.0
margin_top = 188.0
margin_right = 72.0
margin_bottom = 206.0
theme = ExtResource( 4 )
text = "Left:"
script = ExtResource( 6 )
__meta__ = {
"_edit_use_anchors_": false
}
2021-10-01 14:23:48 +00:00
[node name="Score" type="Label" parent="."]
margin_left = 336.0
margin_top = 192.0
margin_right = 376.0
margin_bottom = 210.0
grow_horizontal = 0
grow_vertical = 0
theme = ExtResource( 4 )
text = "500"
align = 2
script = ExtResource( 5 )
__meta__ = {
"_edit_use_anchors_": false
}