6 lines
198 B
GDScript3
6 lines
198 B
GDScript3
|
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)
|