Add kart game

This commit is contained in:
2023-06-01 00:06:33 +02:00
parent 28e66a6ac2
commit 445611db4c
21 changed files with 1554 additions and 1070 deletions

View File

@@ -0,0 +1,15 @@
extends Node3D
class_name PhysicsInterpolator
var physics_delta = 1.0;
func _ready():
top_level = true
func _process(delta):
transform = transform.interpolate_with(
get_parent().global_transform, delta / physics_delta)
func _physics_process(delta):
physics_delta = delta