diff options
author | Henrique Alves <henriquelalves@gmail.com> | 2022-07-16 15:32:08 -0300 |
---|---|---|
committer | Henrique Alves <henriquelalves@gmail.com> | 2022-07-16 15:32:08 -0300 |
commit | 0a3148bc9dfc4b3ff20046b93832592ed5c6e7ae (patch) | |
tree | aa7c3ef68463138cb1eea8ba16a0f608be3783c9 /Scenes/Dungeon.tscn | |
parent | 093a70adfe922f22b07bbf3b02fa52774c989943 (diff) | |
download | gamejam-gmtk-2022-0a3148bc9dfc4b3ff20046b93832592ed5c6e7ae.tar.gz gamejam-gmtk-2022-0a3148bc9dfc4b3ff20046b93832592ed5c6e7ae.tar.bz2 gamejam-gmtk-2022-0a3148bc9dfc4b3ff20046b93832592ed5c6e7ae.zip |
Add health to enemies
Diffstat (limited to 'Scenes/Dungeon.tscn')
-rw-r--r-- | Scenes/Dungeon.tscn | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Scenes/Dungeon.tscn b/Scenes/Dungeon.tscn index 5795e4d..2126367 100644 --- a/Scenes/Dungeon.tscn +++ b/Scenes/Dungeon.tscn @@ -1,8 +1,9 @@ -[gd_scene load_steps=8 format=2] +[gd_scene load_steps=9 format=2] [ext_resource path="res://Scenes/Dungeon.gd" type="Script" id=1] [ext_resource path="res://Scenes/CameraControl.gd" type="Script" id=2] [ext_resource path="res://Assets/Environment/Floor_tile.png" type="Texture" id=3] +[ext_resource path="res://Scenes/UIController.gd" type="Script" id=4] [sub_resource type="PlaneMesh" id=1] @@ -48,3 +49,11 @@ size = 7.35 [node name="DirectionalLight" type="DirectionalLight" parent="."] transform = Transform( 0.73644, 0.441272, -0.512773, 0, 0.757975, 0.652284, 0.676503, -0.480367, 0.558203, 0, 35.1428, 0 ) light_energy = 0.5 + +[node name="CanvasLayer" type="CanvasLayer" parent="."] +script = ExtResource( 4 ) + +[node name="NumberOfTurns" type="Label" parent="CanvasLayer"] +margin_right = 40.0 +margin_bottom = 14.0 +rect_scale = Vector2( 2, 2 ) |