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
15 lines
286 B
C#
15 lines
286 B
C#
using AssetStudio;
|
|
|
|
namespace AssetStudioCLI
|
|
{
|
|
internal class GameObjectNode : BaseNode
|
|
{
|
|
public GameObject gameObject;
|
|
|
|
public GameObjectNode(GameObject gameObject) : base(gameObject.m_Name)
|
|
{
|
|
this.gameObject = gameObject;
|
|
}
|
|
}
|
|
}
|