Firstborn/Assets/MeshBaker/scripts/MB3_BatchPrefabBaker.cs
Schaken-Mods 959e80cf72 assets upload
assets upload description.
2023-03-28 12:16:30 -05:00

19 lines
426 B
C#

using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using DigitalOpus.MB.Core;
public class MB3_BatchPrefabBaker : MonoBehaviour {
public MB2_LogLevel LOG_LEVEL = MB2_LogLevel.info;
[System.Serializable]
public class MB3_PrefabBakerRow{
public GameObject sourcePrefab;
public GameObject resultPrefab;
}
public MB3_PrefabBakerRow[] prefabRows;
public string outputPrefabFolder;
}