export-table-pulgin-csharp 1.0.62 → 1.0.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -111,7 +111,7 @@ namespace MEEC.ExportedConfigs
|
|
|
111
111
|
{
|
|
112
112
|
var tip = $"cannot load ${RowClass}[] with LoadInEditor at runtime";
|
|
113
113
|
Debug.LogError(tip);
|
|
114
|
-
throw new Exception(tip);
|
|
114
|
+
throw new System.Exception(tip);
|
|
115
115
|
}
|
|
116
116
|
var loadUrl="Assets/Bundles/GameConfigs/Auto/${fullName}.json";
|
|
117
117
|
var configJson = UnityEditor.AssetDatabase.LoadAssetAtPath<TextAsset>(loadUrl);
|
package/package.json
CHANGED
|
@@ -105,7 +105,7 @@ namespace MEEC.ExportedConfigs
|
|
|
105
105
|
{
|
|
106
106
|
var tip = $"cannot load ${RowClass}[] with LoadInEditor at runtime";
|
|
107
107
|
Debug.LogError(tip);
|
|
108
|
-
throw new Exception(tip);
|
|
108
|
+
throw new System.Exception(tip);
|
|
109
109
|
}
|
|
110
110
|
var loadUrl="Assets/Bundles/GameConfigs/Auto/${fullName}.json";
|
|
111
111
|
var configJson = UnityEditor.AssetDatabase.LoadAssetAtPath<TextAsset>(loadUrl);
|