源战役客户端
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

16 行
370 B

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