Add split object fbx export to CLI

This commit is contained in:
svn
2023-08-31 21:07:02 +01:00
parent 5ac597c935
commit 7cca301f7a
8 changed files with 301 additions and 0 deletions

View File

@ -0,0 +1,16 @@
using AssetStudio;
using System.Collections.Generic;
namespace AssetStudioCLI
{
internal class GameObjectNode : BaseNode
{
public GameObject gameObject;
public GameObjectNode(GameObject gameObject)
{
this.gameObject = gameObject;
}
}
}