源战役客户端
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
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;
}