Luna Brovchuk 2023-10-02 22:47:40 +02:00
commit d4973ef920
4 changed files with 10 additions and 1 deletions

View File

@ -10,7 +10,7 @@ config_version=4
[application] [application]
config/name="Long Night" config/name="The Endless Night"
config/description="Game made for Ludum Dare 54 by iLunaiLuna, Manskage and JustDzhi" config/description="Game made for Ludum Dare 54 by iLunaiLuna, Manskage and JustDzhi"
run/main_scene="res://src/scenes/menu/Menu.tscn" run/main_scene="res://src/scenes/menu/Menu.tscn"
boot_splash/show_image=false boot_splash/show_image=false

View File

@ -3,6 +3,7 @@
[ext_resource path="res://res/fonts/silkscreen/Silkscreen-Regular.ttf" type="DynamicFontData" id=1] [ext_resource path="res://res/fonts/silkscreen/Silkscreen-Regular.ttf" type="DynamicFontData" id=1]
[sub_resource type="DynamicFont" id=1] [sub_resource type="DynamicFont" id=1]
size = 8
font_data = ExtResource( 1 ) font_data = ExtResource( 1 )
[resource] [resource]

View File

@ -124,6 +124,7 @@ visible = false
position = Vector2( 11, 2 ) position = Vector2( 11, 2 )
frames = ExtResource( 5 ) frames = ExtResource( 5 )
animation = "idle" animation = "idle"
frame = 2
playing = true playing = true
[node name="AudioGetDamage" type="AudioStreamPlayer" parent="."] [node name="AudioGetDamage" type="AudioStreamPlayer" parent="."]

View File

@ -70,3 +70,10 @@ func select_card():
$"UIWrapper/UI/Center/SpellHolder".add_modifier(spells[selected_modifier], selected_modifier) $"UIWrapper/UI/Center/SpellHolder".add_modifier(spells[selected_modifier], selected_modifier)
Global.playing = true Global.playing = true
$UIWrapper/UI/Cards.visible = false $UIWrapper/UI/Cards.visible = false
func _process(delta):
update_ui()
func update_ui():
$"UIWrapper/UI/Right/CastTime/CastTimeLabel".text = String(0)
$"UIWrapper/UI/Right/Damage/DamageLabel".text = String(0)