rabidus-test/Assets/PolyFew/ThirdParty/AsImpL/Scripts/ModelImportInfo.cs

28 lines
685 B
C#
Raw Normal View History

2023-10-20 13:29:44 +03:00
using UnityEngine;
namespace BrainFailProductions.PolyFew.AsImpL
{
/// <summary>
/// Model import settings, used for batch importing.
/// </summary>
[System.Serializable]
public class ModelImportInfo
{
[Tooltip("Name for the game object created\n(leave it blank to use its file name)")]
public string name;
[Tooltip("Path relative to the project folder")]
public string path;
[Tooltip("Check this to skip this model")]
public bool skip = false;
public ImportOptions loaderOptions;
// Default constructor needed by XmlSerializer
public ModelImportInfo()
{
}
}
}