public static void ObjectCreate() { MasterCommonShopDetail loadSettingData = CreateInstance <MasterCommonShopDetail> (); string path = SystemSetting.GetScriptableobjectPath() + "MasterCommonShopDetailAsset" + ".asset"; AssetDatabase.CreateAsset(loadSettingData, path); AssetDatabase.ImportAsset(path); EditorUtility.UnloadUnusedAssets(); }
public static void CreateComponents(Type _type) { string name = "target"; string outputPath = SystemSetting.GetAssetSrcPath() + _type.Name + "Prefab.prefab"; GameObject gameObject = EditorUtility.CreateGameObjectWithHideFlags( name, HideFlags.HideInHierarchy, typeof(MasterCommonShopDetailDataHolder) ); //プレハブにスクリプタブルオブジェクトを設置 UnityEngine.Object[] assets; string assetName = SystemSetting.GetResourcesLoadPath() + _type.Name + "Asset"; assets = Resources.LoadAll(assetName); Debug.LogWarning("GetObj :" + assetName.ToString()); MasterCommonShopDetail tmp = new MasterCommonShopDetail(); foreach (UnityEngine.Object asset in assets) { if (asset is MasterCommonShopDetail) { tmp = (MasterCommonShopDetail)asset; } } MasterCommonShopDetailDataHolder holder = gameObject.GetComponent <MasterCommonShopDetailDataHolder> (); holder.assetBundleData = tmp; SetAssetBundleInfo(gameObject); PrefabUtility.CreatePrefab(outputPath, gameObject, ReplacePrefabOptions.ReplaceNameBased); Editor.DestroyImmediate(gameObject); }