Merge pull request #10669 from hpvb/fix-6118
Add several missing Null checks in _notification
This commit is contained in:
commit
3ec9e26cb4
@ -48,6 +48,9 @@ void CollisionPolygonEditor::_notification(int p_what) {
|
|||||||
|
|
||||||
} break;
|
} break;
|
||||||
case NOTIFICATION_PROCESS: {
|
case NOTIFICATION_PROCESS: {
|
||||||
|
if (!node) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (node->get_depth() != prev_depth) {
|
if (node->get_depth() != prev_depth) {
|
||||||
_polygon_draw();
|
_polygon_draw();
|
||||||
|
@ -835,6 +835,9 @@ void GridMapEditor::_notification(int p_what) {
|
|||||||
duplicate_instance = RID();
|
duplicate_instance = RID();
|
||||||
|
|
||||||
} else if (p_what == NOTIFICATION_PROCESS) {
|
} else if (p_what == NOTIFICATION_PROCESS) {
|
||||||
|
if (!node) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
Transform xf = node->get_global_transform();
|
Transform xf = node->get_global_transform();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user