mirror of
https://github.com/Relintai/regression-test-project.git
synced 2025-02-20 17:24:33 +01:00
7 lines
126 B
GDScript
7 lines
126 B
GDScript
extends RigidBody
|
|
|
|
|
|
func _physics_process(delta: float) -> void:
|
|
add_force(Vector3(0, 4 * delta, 0), Vector3(0, 0, 0))
|
|
pass
|