settings, small fixes

This commit is contained in:
Daniel Kauss Serna 2026-02-15 16:17:51 +01:00
parent b12c193636
commit e08e3ebb13
174 changed files with 997 additions and 1040 deletions

View file

@ -11,14 +11,3 @@ func _process(delta: float) -> void:
# Calculate the new Y position using a sine wave
position.y = sin(time * float_time) * float_str + float_offset
queue_redraw()
func switch_mask(new : Types.mask_types):
$MeleeMask.visible = false
$RangedMask.visible = false
$SpitMask.visible = false
if (new == Types.mask_types.Melee):
$MeleeMask.visible = true
elif (new == Types.mask_types.Ranged):
$RangedMask.visible = true
elif (new == Types.mask_types.Spit):
$SpitMask.visible = true