AAAA
This commit is contained in:
parent
279b5e5599
commit
4f70414ed9
46 changed files with 1485 additions and 170 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue