mirror of
https://github.com/Relintai/regression-test-project.git
synced 2024-11-14 10:27:53 +01:00
6 lines
123 B
GDScript3
6 lines
123 B
GDScript3
|
extends RigidBody3D
|
||
|
|
||
|
func _physics_process(delta: float) -> void:
|
||
|
add_force(Vector3(0,4 * delta ,0),Vector3(0,0,0))
|
||
|
pass
|