MB3_BatchPrefabBaker.cs 426 B

123456789101112131415161718
  1. using UnityEngine;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using DigitalOpus.MB.Core;
  5. public class MB3_BatchPrefabBaker : MonoBehaviour {
  6. public MB2_LogLevel LOG_LEVEL = MB2_LogLevel.info;
  7. [System.Serializable]
  8. public class MB3_PrefabBakerRow{
  9. public GameObject sourcePrefab;
  10. public GameObject resultPrefab;
  11. }
  12. public MB3_PrefabBakerRow[] prefabRows;
  13. public string outputPrefabFolder;
  14. }