pegchamp/HUD/HUD.tscn
2021-11-28 14:51:08 +01:00

67 lines
1.6 KiB
Text

[gd_scene load_steps=7 format=2]
[ext_resource path="res://Ball/sprite.png" type="Texture" id=1]
[ext_resource path="res://HUD/BallCounter.gd" type="Script" id=2]
[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]
[ext_resource path="res://HUD/PinksLabel.gd" type="Script" id=6]
[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 )
[node name="Multiplier" type="Label" parent="."]
margin_left = 336.0
margin_top = 170.0
margin_right = 376.0
margin_bottom = 188.0
grow_horizontal = 0
grow_vertical = 0
theme = ExtResource( 4 )
text = "x 1"
align = 2
script = ExtResource( 3 )
__meta__ = {
"_edit_use_anchors_": false
}
[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
}
[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
}