Parcourir la source

Fix editor segfault when using a path3d without a curve3d

Mike Precup il y a 1 mois
Parent
commit
0f04d5ce53
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      editor/scene/3d/path_3d_editor_plugin.cpp

+ 1 - 1
editor/scene/3d/path_3d_editor_plugin.cpp

@@ -741,7 +741,7 @@ void Path3DEditorPlugin::edit(Object *p_object) {
 	} else {
 		Path3D *pre = path;
 		path = nullptr;
-		if (pre) {
+		if (pre && pre->get_curve().is_valid()) {
 			pre->get_curve()->emit_signal(CoreStringName(changed));
 		}
 	}