6 lines
198 B
GDScript
6 lines
198 B
GDScript
extends PackageItem
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
func _process(delta: float) -> void:
|
|
print("POS: ", global_position, "\t\tvelo: ", linear_velocity)
|