blob: 4711acc9e8a632be8628868fddd5c61715dabb4c (
plain) (
blame)
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
|
[gd_scene load_steps=3 format=3 uid="uid://bp70db5foglp4"]
[sub_resource type="GDScript" id="GDScript_7n0ib"]
script/source = "extends Label
func _process(_delta: float) -> void:
set_text(\"FPS \" + str(Engine.get_frames_per_second()))
"
[sub_resource type="GDScript" id="GDScript_htqdx"]
script/source = "extends Label
func _process(_delta: float) -> void:
set_text(\"Money Collected: $\" + str(Stats.money))
"
[node name="Interface" type="Control"]
layout_mode = 3
anchors_preset = 0
offset_right = 40.0
offset_bottom = 40.0
[node name="VBoxContainer" type="VBoxContainer" parent="."]
layout_mode = 0
offset_right = 67.0
offset_bottom = 40.0
[node name="FPS" type="Label" parent="VBoxContainer"]
layout_mode = 2
text = "FPS"
script = SubResource("GDScript_7n0ib")
[node name="Money" type="Label" parent="VBoxContainer"]
layout_mode = 2
text = "Money Spent"
script = SubResource("GDScript_htqdx")
|