浏览代码

Fix empty script interface crash on tscn load.

Add fail conditions to protect the visual script function and also fix the initiating cause.
K. S. Ernest (iFire) Lee 6 年之前
父节点
当前提交
ef78181073
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      modules/visual_script/visual_script_editor.cpp

+ 2 - 1
modules/visual_script/visual_script_editor.cpp

@@ -765,6 +765,7 @@ void VisualScriptEditor::_update_graph(int p_only_id) {
 }
 
 void VisualScriptEditor::_update_members() {
+	ERR_FAIL_COND(!script.is_valid());
 
 	updating_members = true;
 
@@ -3061,7 +3062,7 @@ void VisualScriptEditor::_notification(int p_what) {
 			}
 		}
 
-		if (is_visible_in_tree()) {
+		if (is_visible_in_tree() && script.is_valid()) {
 			_update_members();
 			_update_graph();
 		}