diff options
Diffstat (limited to 'Scenes/Dungeon.tscn')
-rw-r--r-- | Scenes/Dungeon.tscn | 61 |
1 files changed, 55 insertions, 6 deletions
diff --git a/Scenes/Dungeon.tscn b/Scenes/Dungeon.tscn index 2126367..727408f 100644 --- a/Scenes/Dungeon.tscn +++ b/Scenes/Dungeon.tscn @@ -1,9 +1,11 @@ -[gd_scene load_steps=9 format=2] +[gd_scene load_steps=13 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] +[ext_resource path="res://Assets/AlegreyaSansSC-ExtraBold.ttf" type="DynamicFontData" id=5] +[ext_resource path="res://Scenes/ScoreParticle.tscn" type="PackedScene" id=6] [sub_resource type="PlaneMesh" id=1] @@ -21,6 +23,18 @@ background_sky = SubResource( 2 ) ambient_light_color = Color( 1, 1, 1, 1 ) dof_blur_far_amount = 0.06 +[sub_resource type="DynamicFont" id=5] +size = 48 +outline_size = 2 +outline_color = Color( 0, 0, 0, 1 ) +font_data = ExtResource( 5 ) + +[sub_resource type="DynamicFont" id=6] +size = 36 +outline_size = 2 +outline_color = Color( 0, 0, 0, 1 ) +font_data = ExtResource( 5 ) + [node name="Dungeon" type="Spatial"] script = ExtResource( 1 ) @@ -50,10 +64,45 @@ size = 7.35 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="."] +[node name="UIController" 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 ) +[node name="NumberOfTurns" type="Label" parent="UIController"] +margin_left = 7.0 +margin_top = 7.0 +margin_right = 291.0 +margin_bottom = 56.0 +custom_fonts/font = SubResource( 5 ) +text = "Turns left: 20" + +[node name="Objectives" type="Label" parent="UIController"] +anchor_left = 1.0 +anchor_right = 1.0 +margin_left = -610.0 +margin_top = 5.0 +margin_right = -9.0 +margin_bottom = 54.0 +custom_fonts/font = SubResource( 6 ) +text = "(0/1) Activate the Crystals!" +align = 2 +valign = 2 + +[node name="Particles" type="Control" parent="UIController"] + +[node name="ScoreParticle" parent="UIController/Particles" instance=ExtResource( 6 )] +visible = false + +[node name="ScoreParticle2" parent="UIController/Particles" instance=ExtResource( 6 )] +visible = false + +[node name="ScoreParticle3" parent="UIController/Particles" instance=ExtResource( 6 )] +visible = false + +[node name="ScoreParticle4" parent="UIController/Particles" instance=ExtResource( 6 )] +visible = false + +[node name="ScoreParticle5" parent="UIController/Particles" instance=ExtResource( 6 )] +visible = false + +[node name="ScoreParticle6" parent="UIController/Particles" instance=ExtResource( 6 )] +visible = false |