Exemple #1
0
 public void ExportAllSkillArt()
 {
     if (GUILayout.Button("导出技能"))
     {
         func.ExportAllSkillArtPrefab(skillCombineList, true);
     }
     if (GUILayout.Button("导出Ammo"))
     {
         // func.ExportAllAmmoArtPrefab(ammoArtInfoList);
         func.ExportPrefabsIndependent(ammoArtList, func.data.buildTarget, func.data.outputPaths.ammoArtDirecotyPath);
     }
     if (GUILayout.Button("导出Buff"))
     {
         // func.ExportAllBuffArtPrefab(buffArtInfoList);
         func.ExportPrefabsIndependent(buffArtList, func.data.buildTarget, func.data.outputPaths.buffArtDirecotyPath);
     }
 }