diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2022-08-05 20:17:55 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2022-08-05 20:17:55 -0400 |
| commit | 19aba81bd9920c470ff258b35ef14276faa1146e (patch) | |
| tree | 2937e91c1822edaf4ad0fcaf44f8a50ecf303203 /game/Interface.tscn | |
| parent | cc3ae0f86b824cec321ee7734df4daa22b81af70 (diff) | |
| download | frivolous-run-19aba81bd9920c470ff258b35ef14276faa1146e.tar.gz frivolous-run-19aba81bd9920c470ff258b35ef14276faa1146e.tar.bz2 frivolous-run-19aba81bd9920c470ff258b35ef14276faa1146e.zip | |
Finally some gameplay
Diffstat (limited to 'game/Interface.tscn')
| -rw-r--r-- | game/Interface.tscn | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/game/Interface.tscn b/game/Interface.tscn new file mode 100644 index 0000000..8efd082 --- /dev/null +++ b/game/Interface.tscn @@ -0,0 +1,23 @@ +[gd_scene load_steps=2 format=2] + +[ext_resource path="res://game/FPS.gd" type="Script" id=1] + +[node name="Interface" type="Control"] +margin_right = 40.0 +margin_bottom = 40.0 + +[node name="VBoxContainer" type="VBoxContainer" parent="."] +margin_right = 67.0 +margin_bottom = 40.0 + +[node name="FPS" type="Label" parent="VBoxContainer"] +margin_right = 67.0 +margin_bottom = 14.0 +text = "FPS" +script = ExtResource( 1 ) + +[node name="Money" type="Label" parent="VBoxContainer"] +margin_top = 18.0 +margin_right = 67.0 +margin_bottom = 32.0 +text = "Money: $0" |
