Implemented physics interpolation

This commit is contained in:
2024-02-27 21:05:55 +01:00
parent ca7fa120ea
commit 489a14061a
23 changed files with 226 additions and 68 deletions

View File

@ -4,6 +4,6 @@ extends Label
func _ready():
text = get_parent().name + ":"
func _get_configuration_warnings():
func _get_configuration_warnings() -> PackedStringArray:
text = get_parent().name + ":"
return []

View File

@ -4,4 +4,4 @@ func _process(_delta):
if Global.player == null:
return
text = str(Global.player.velocity)
text = str(Global.player.physics.velocity)