Exemple #1
0
 internal static void CreateLocalizationAssets(string path)
 {
     try
     {
         TutorialManager.DirectoryCopy(
             $"{PackageInfo.FindForAssembly(Assembly.GetExecutingAssembly()).assetPath}/.LocalizationAssets",
             path
             );
         AssetDatabase.Refresh();
     }
     catch (Exception e)
     {
         Debug.LogException(e);
     }
 }