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

@ -0,0 +1,9 @@
class_name CharacterComponent
extends Node
var character: Character
func _enter_tree():
assert(owner, "owner not set")
assert(owner is Character, "owner must be a character")
character = owner