Alot of changes(description)

- finally fixed the save system so it saves new users files
- added better bgs
- reorganized files so its less of a clusterfuck
This commit is contained in:
Bucket Of Chicken
2025-08-10 07:20:17 +02:00
parent 31ae121a8f
commit 1dbaa781dc
136 changed files with 318 additions and 186 deletions
+25
View File
@@ -0,0 +1,25 @@
extends Button
@onready var settings_popup: Control = $"../SettingsHolder/SettingsPopup"
var currentlyExtending:bool
var Target:float = 50
func _process(delta: float) -> void:
if currentlyExtending:
settings_popup.position.y = clamp(lerp(settings_popup.position.y,Target,0.25),0,100)
else:
settings_popup.position.y -=1
settings_popup.position.y = clamp(lerp(Target,settings_popup.position.y,1.25),0,100)
settings_popup.modulate.a = settings_popup.position.y / Target
if settings_popup.position.y > 1:
settings_popup.show()
else:
settings_popup.hide()
func _on_toggled(toggled_on: bool) -> void:
print("@@")
if toggled_on:
currentlyExtending = true
settings_popup.position.y = 1
else:
currentlyExtending = false