瀏覽代碼

Merge pull request #53519 from timothyqiu/anim-tree-null

Fix make sub-resource crash in AnimationTreeEditor
Rémi Verschelde 4 年之前
父節點
當前提交
8afd2171d1
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      editor/plugins/animation_tree_editor_plugin.cpp

+ 1 - 1
editor/plugins/animation_tree_editor_plugin.cpp

@@ -55,7 +55,7 @@ void AnimationTreeEditor::edit(AnimationTree *p_tree) {
 	tree = p_tree;
 
 	Vector<String> path;
-	if (tree->has_meta("_tree_edit_path")) {
+	if (tree && tree->has_meta("_tree_edit_path")) {
 		path = tree->get_meta("_tree_edit_path");
 		edit_path(path);
 	} else {