pegchamp/HUD/HUD.tscn
2021-10-01 16:23:48 +02:00

54 lines
1.3 KiB
Text

[gd_scene load_steps=6 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]
[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 = 176.0
margin_right = 376.0
margin_bottom = 190.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="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
}