mirror of
https://github.com/Relintai/regression-test-project.git
synced 2025-03-22 19:17:33 +01:00
7 lines
144 B
GDScript3
7 lines
144 B
GDScript3
|
extends RigidDynamicBody3D
|
||
|
|
||
|
|
||
|
func _physics_process(delta: float) -> void:
|
||
|
add_constant_force(Vector3(0, 4 * delta, 0), Vector3(0, 0, 0))
|
||
|
pass
|