This commit is contained in:
bingus_violet 2024-03-13 16:15:55 -05:00
parent 279b5e5599
commit 4f70414ed9
46 changed files with 1485 additions and 170 deletions

View file

@ -1,7 +1,6 @@
extends Control
@onready var player = $"../../"
@onready var grapple = $"../../Sprite/Grapple"
@onready var velocNumb = $"Velocity"
@onready var horzVeloc = $"HorzVeloc"
@ -16,4 +15,7 @@ func _physics_process(delta):
vertVeloc.text = "Vertical Velocity: " + str(round(player.velocity.y))
addedVeloc.text = "Added Velocity: " + str(round(abs(player.addedveloc)))
jumps.text = "Jumps: " + str(player.jumps)
grapples.text = "Grapples: " + str(grapple.grapples)
if player.find_child("Grapple"):
grapples.text = "Grapples: " + str(player.find_child("Grapple").grapples)
func _process(delta):
size = get_viewport().size