export-table-pulgin-csharp 1.1.183 → 1.1.185
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.
- package/dist/ExportCSPlugin.js +1 -1
- package/package.json +1 -1
- package/src/ExportCSPlugin.ts +1 -1
package/dist/ExportCSPlugin.js
CHANGED
|
@@ -154,7 +154,7 @@ ${(0, export_table_lib_1.foreach)(fields, f => {
|
|
|
154
154
|
#if UNITY_EDITOR
|
|
155
155
|
if (${tempDictByMemberName}.Count != Configs.Count)
|
|
156
156
|
{
|
|
157
|
-
UnityEngine.Debug.LogError($"配表数据不一致(ConfigsUnmatched)
|
|
157
|
+
UnityEngine.Debug.LogError($"配表数据不一致(ConfigsUnmatched)<${RowClass}.${memberName}>: {${tempDictByMemberName}.Count}!={Configs.Count}");
|
|
158
158
|
}
|
|
159
159
|
#endif
|
|
160
160
|
return ${tempDictByMemberName}.GetValueOrDefault(${paraName});
|
package/package.json
CHANGED
package/src/ExportCSPlugin.ts
CHANGED
|
@@ -183,7 +183,7 @@ ${foreach(fields, f => {
|
|
|
183
183
|
#if UNITY_EDITOR
|
|
184
184
|
if (${tempDictByMemberName}.Count != Configs.Count)
|
|
185
185
|
{
|
|
186
|
-
UnityEngine.Debug.LogError($"配表数据不一致(ConfigsUnmatched)
|
|
186
|
+
UnityEngine.Debug.LogError($"配表数据不一致(ConfigsUnmatched)<${RowClass}.${memberName}>: {${tempDictByMemberName}.Count}!={Configs.Count}");
|
|
187
187
|
}
|
|
188
188
|
#endif
|
|
189
189
|
return ${tempDictByMemberName}.GetValueOrDefault(${paraName});
|