Fix delta passed in _physics_process
Regression due to typo in recent GDVIRTUAL_CALL change.
This commit is contained in:
parent
f89adbf112
commit
cbce1550ff
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ void Node::_notification(int p_notification) {
|
||||||
|
|
||||||
} break;
|
} break;
|
||||||
case NOTIFICATION_PHYSICS_PROCESS: {
|
case NOTIFICATION_PHYSICS_PROCESS: {
|
||||||
GDVIRTUAL_CALL(_physics_process, get_process_delta_time());
|
GDVIRTUAL_CALL(_physics_process, get_physics_process_delta_time());
|
||||||
|
|
||||||
} break;
|
} break;
|
||||||
case NOTIFICATION_ENTER_TREE: {
|
case NOTIFICATION_ENTER_TREE: {
|
||||||
|
|
Loading…
Reference in a new issue