2
0
Fork 0

Merge pull request #52132 from nekomatata/fix-physics-process-delta

Fix delta passed in _physics_process
4.0
Camille Mohr-Daurat 2021-08-26 11:27:38 +07:00 committed by GitHub
commit adafc509f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

@ -58,7 +58,7 @@ void Node::_notification(int p_notification) {
} break;
case NOTIFICATION_PHYSICS_PROCESS: {
GDVIRTUAL_CALL(_physics_process, get_process_delta_time());
GDVIRTUAL_CALL(_physics_process, get_physics_process_delta_time());
} break;
case NOTIFICATION_ENTER_TREE: {