diff --git a/interfaces/hud/hud.tscn b/interfaces/hud/hud.tscn index d8f14b2..d0f3493 100644 --- a/interfaces/hud/hud.tscn +++ b/interfaces/hud/hud.tscn @@ -46,7 +46,7 @@ func _process(_delta : float) -> void: text = \"\" text += \"fps: %s\\n\" % str(Engine.get_frames_per_second()) text += \"position: %d, %d, %d\\n\" % [player.position.x, player.position.y, player.position.z] - text += \"speed: %d km/h\\n\" % (player.linear_velocity.length() * 3.6) + text += \"speed: %d km/h\\n\" % (player.linear_velocity.length() * 3.6) text += \"speed_xz: %d km/h\\n\" % (velocity_xz.length() * 3.6) "