EditorContentManager Part 2

This commit is contained in:
Simon Lübeß
2023-01-01 16:53:58 +01:00
parent c389a77274
commit 502cee47e7
3 changed files with 33 additions and 74 deletions
@@ -61,7 +61,7 @@ namespace GlitchyEditor.EditWindows
}
}
private void ImGuiPrintEntityTree(TreeNode<EditorContentManager.AssetNode> tree)
private void ImGuiPrintEntityTree(TreeNode<AssetNode> tree)
{
if (!tree->IsDirectory)
return;
@@ -127,7 +127,7 @@ namespace GlitchyEditor.EditWindows
}
}
private void DrawDirectoryItem(TreeNode<EditorContentManager.AssetNode> entry)
private void DrawDirectoryItem(TreeNode<AssetNode> entry)
{
ImGui.BeginChild("item", (.)DirectoryItemSize);
@@ -197,7 +197,7 @@ namespace GlitchyEditor.EditWindows
ImGui.EndChild();
}
private void EntryDoubleClicked(TreeNode<EditorContentManager.AssetNode> entry)
private void EntryDoubleClicked(TreeNode<AssetNode> entry)
{
if (entry->IsDirectory)
{