You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-05 19:31:35 +00:00
Fix delta passed in _physics_process
Regression due to typo in recent GDVIRTUAL_CALL change.
This commit is contained in:
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user