mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-22 08:29:19 +01:00
Add material list to further content
This commit is contained in:
parent
28246244cd
commit
7ef50f7bb4
1 changed files with 7 additions and 0 deletions
|
|
@ -135,6 +135,13 @@ public partial class ModEditWindow
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
using (var materials = ImRaii.TreeNode("Materials", ImGuiTreeNodeFlags.DefaultOpen))
|
||||||
|
{
|
||||||
|
if (materials)
|
||||||
|
foreach (var material in file.Materials)
|
||||||
|
ImRaii.TreeNode(material, ImGuiTreeNodeFlags.Leaf).Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
using (var attributes = ImRaii.TreeNode("Attributes", ImGuiTreeNodeFlags.DefaultOpen))
|
using (var attributes = ImRaii.TreeNode("Attributes", ImGuiTreeNodeFlags.DefaultOpen))
|
||||||
{
|
{
|
||||||
if (attributes)
|
if (attributes)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue