mirror of
https://github.com/godotengine/regression-test-project.git
synced 2026-01-06 02:10:13 +03:00
6 lines
121 B
GDScript
6 lines
121 B
GDScript
extends RigidBody
|
|
|
|
func _physics_process(delta: float) -> void:
|
|
add_force(Vector3(0,4 * delta ,0),Vector3(0,0,0))
|
|
pass
|