mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-25 05:40:21 -04:00
- Added option to group exported assets by node path in scene hierarchy - Added field with node path to exported xml asset list
17 lines
321 B
C#
17 lines
321 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AssetStudioCLI
|
|
{
|
|
internal class BaseNode
|
|
{
|
|
public List<BaseNode> nodes = new List<BaseNode>();
|
|
public string FullPath = "";
|
|
public readonly string Text;
|
|
|
|
public BaseNode(string name)
|
|
{
|
|
Text = name;
|
|
}
|
|
}
|
|
}
|