some stuff :3

This commit is contained in:
kaia
2024-03-26 16:38:09 -05:00
parent 8907a6e750
commit 7f372279bc
13 changed files with 14634 additions and 255 deletions

View File

@@ -133,12 +133,12 @@ func _ready():
func _process(delta):
var hold = origin.get_parent().position.y
origin.get_parent().position.y += yVel * delta
origin.get_parent().position.y += yVel * 0.0166
if origin.get_parent().position.y > 0:
origin.get_parent().position.y = 0
bounceChange = hold - origin.get_parent().position.y
yVel += bounceGravity*delta
yVel += bounceGravity*0.0166
if Input.is_action_just_pressed("openFolder"):
OS.shell_open(ProjectSettings.globalize_path("user://"))