Fixed memory leak in editor.
This commit is contained in:
parent
a1c4630ee7
commit
9298e5ad0e
@ -364,6 +364,14 @@ void AnimGraphEditorRenderSidebar(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AnimGraphEditorResetHierarchyStack() {
|
||||||
|
sEditorState.hierarchyStack.clear();
|
||||||
|
sEditorState.hierarchyStack.push_back(sEditorState.rootGraphResource);
|
||||||
|
sEditorState.hierarchyStack[sEditorState.hierarchyStackIndex] =
|
||||||
|
sEditorState.hierarchyStack.back();
|
||||||
|
sEditorState.hierarchyStackIndex = 0;
|
||||||
|
}
|
||||||
|
|
||||||
void AnimGraphEditorClear() {
|
void AnimGraphEditorClear() {
|
||||||
if (ax::NodeEditor::GetCurrentEditor() != nullptr) {
|
if (ax::NodeEditor::GetCurrentEditor() != nullptr) {
|
||||||
ax::NodeEditor::ClearSelection();
|
ax::NodeEditor::ClearSelection();
|
||||||
@ -378,11 +386,7 @@ void AnimGraphEditorClear() {
|
|||||||
sEditorState.rootGraphResource->m_name = "Root";
|
sEditorState.rootGraphResource->m_name = "Root";
|
||||||
sEditorState.isGraphLoadedThisFrame = true;
|
sEditorState.isGraphLoadedThisFrame = true;
|
||||||
|
|
||||||
sEditorState.hierarchyStack.clear();
|
AnimGraphEditorResetHierarchyStack();
|
||||||
sEditorState.hierarchyStack.push_back(sEditorState.rootGraphResource);
|
|
||||||
sEditorState.hierarchyStack[sEditorState.hierarchyStackIndex] =
|
|
||||||
sEditorState.hierarchyStack.back();
|
|
||||||
sEditorState.hierarchyStackIndex = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void BlendTreeEditorNodePopup() {
|
void BlendTreeEditorNodePopup() {
|
||||||
@ -453,8 +457,13 @@ void AnimGraphEditorMenuBar() {
|
|||||||
}
|
}
|
||||||
if (ImGui::Button("Load")) {
|
if (ImGui::Button("Load")) {
|
||||||
AnimGraphEditorClear();
|
AnimGraphEditorClear();
|
||||||
sEditorState.rootGraphResource->LoadFromFile("editor_graph.json");
|
|
||||||
sEditorState.isGraphLoadedThisFrame = true;
|
delete sEditorState.rootGraphResource;
|
||||||
|
|
||||||
|
sEditorState.rootGraphResource =
|
||||||
|
AnimGraphResource::CreateFromFile("editor_graph.json");
|
||||||
|
|
||||||
|
AnimGraphEditorResetHierarchyStack();
|
||||||
}
|
}
|
||||||
if (ImGui::Button("Clear")) {
|
if (ImGui::Button("Clear")) {
|
||||||
AnimGraphEditorClear();
|
AnimGraphEditorClear();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user