Fix misspelled "overriden"

In recent GDVIRTUAL PR and SkeletonModification3DJiggle doc.
This commit is contained in:
Haoyu Qiu
2021-08-26 01:44:01 +08:00
parent ee4a8e6a85
commit eba7265a1c
7 changed files with 15 additions and 15 deletions

View File

@ -123,22 +123,22 @@ void Node::_notification(int p_notification) {
} break;
case NOTIFICATION_READY: {
if (get_script_instance()) {
if (GDVIRTUAL_IS_OVERRIDEN(_input)) {
if (GDVIRTUAL_IS_OVERRIDDEN(_input)) {
set_process_input(true);
}
if (GDVIRTUAL_IS_OVERRIDEN(_unhandled_input)) {
if (GDVIRTUAL_IS_OVERRIDDEN(_unhandled_input)) {
set_process_unhandled_input(true);
}
if (GDVIRTUAL_IS_OVERRIDEN(_unhandled_key_input)) {
if (GDVIRTUAL_IS_OVERRIDDEN(_unhandled_key_input)) {
set_process_unhandled_key_input(true);
}
if (GDVIRTUAL_IS_OVERRIDEN(_process)) {
if (GDVIRTUAL_IS_OVERRIDDEN(_process)) {
set_process(true);
}
if (GDVIRTUAL_IS_OVERRIDEN(_physics_process)) {
if (GDVIRTUAL_IS_OVERRIDDEN(_physics_process)) {
set_physics_process(true);
}