Merge branch 'main' of http://meowo.cc:3000/meowo/LD54
commit
d4973ef920
|
@ -10,7 +10,7 @@ config_version=4
|
|||
|
||||
[application]
|
||||
|
||||
config/name="Long Night"
|
||||
config/name="The Endless Night"
|
||||
config/description="Game made for Ludum Dare 54 by iLunaiLuna, Manskage and JustDzhi"
|
||||
run/main_scene="res://src/scenes/menu/Menu.tscn"
|
||||
boot_splash/show_image=false
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
[ext_resource path="res://res/fonts/silkscreen/Silkscreen-Regular.ttf" type="DynamicFontData" id=1]
|
||||
|
||||
[sub_resource type="DynamicFont" id=1]
|
||||
size = 8
|
||||
font_data = ExtResource( 1 )
|
||||
|
||||
[resource]
|
||||
|
|
|
@ -124,6 +124,7 @@ visible = false
|
|||
position = Vector2( 11, 2 )
|
||||
frames = ExtResource( 5 )
|
||||
animation = "idle"
|
||||
frame = 2
|
||||
playing = true
|
||||
|
||||
[node name="AudioGetDamage" type="AudioStreamPlayer" parent="."]
|
||||
|
|
|
@ -70,3 +70,10 @@ func select_card():
|
|||
$"UIWrapper/UI/Center/SpellHolder".add_modifier(spells[selected_modifier], selected_modifier)
|
||||
Global.playing = true
|
||||
$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)
|
||||
|
|
Loading…
Reference in New Issue