use correct physics delta time in physics process

This commit is contained in:
Xtarsia 2025-10-28 15:12:58 +00:00
parent 774938884e
commit 4e1f8c5a02
1 changed files with 1 additions and 1 deletions

View File

@ -1017,7 +1017,7 @@ void Terrain3D::_notification(const int p_what) {
case NOTIFICATION_PHYSICS_PROCESS: {
// Node is processing one physics frame
__physics_process(get_process_delta_time());
__physics_process(get_physics_process_delta_time());
break;
}