Skip to content

Commit

Permalink
Fixed csv template generate
Browse files Browse the repository at this point in the history
  • Loading branch information
CGandGameEngineLearner committed Mar 5, 2024
1 parent 0bddfbb commit 18944fb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@
2. 选择地图路径
3. 完成!


## 生成CSV物编数据表格模板(方便编写CSV格式表格并导入)
在使用从CSV格式的表格中导入物编数据的功能之前,推荐使用此功能生成模板以填写需要的数据。
1.`F1` 打开命令列表,使用命令 `Y3:生成CSV物编数据表格模板(方便编写CSV格式表格并导入)`
2. 选择要把生成的模板放在哪个文件夹
3. 选择物编数据类型
## 从CSV文件中导入物体编辑数据
1.`F1` 打开命令列表,使用命令 `Y3:从CSV文件中导入物体编辑数据`

2. 选择从CSV文件导入(目前仅支持unit和item,其他模板正在添加中,CSV文件可用Excel编辑,CSV文件的格式必须和模板一致,请参考模板样例[csv_template](https://github.com/y3-editor/y3-helper/tree/csv_importer/csv_template),推荐从模板复制样例表头,参照填写,部分内容必须遵守Json格式填写。
2. 选择从CSV文件导入(目前仅支持unit和item,其他模板正在添加中,CSV文件可用Excel编辑,第一行为最终生成的英文字段名,第二行为中文字段名,只要是同一类型的物编数据,都可以合并到一个表维护,请参考模板样例[csv_template](https://github.com/y3-editor/y3-helper/tree/csv_importer/csv_template),推荐从模板复制样例表头,参照填写,部分内容必须遵守Json格式填写,具体请参考模板

需要导入的CSV文件应当集体存放在单独的文件夹,并新建一个config.json文件在其中配置好要导入的CSV文件名,以及对应的类型。例如:

Expand All @@ -35,6 +39,7 @@ item:物品
destructiable:可破坏物
decoration:装饰品
```
然后选择导入此文件夹,本插件会自动搜索和导入该文件夹下的CSV文件
## 第三方库许可证信息

本项目使用了以下第三方库,每个库都有其自己的许可证条款。请注意遵守这些条款。
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
},
{
"command": "y3-helper.generateTemplateCSV",
"title": "Y3:生成CSV表格模板(方便插件CSV格式表格并导入"
"title": "Y3:生成CSV物编数据表格模板(方便编写CSV格式表格并导入"
}
],
"configuration": {
Expand Down
2 changes: 2 additions & 0 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,9 @@ class Helper {
}
else {
vscode.window.showInformationMessage(`selection?.description===undefined||targetUri===undefined`);
return;
}
vscode.window.showInformationMessage(`${selection.label}数据模板生成成功`);
});

});
Expand Down

0 comments on commit 18944fb

Please sign in to comment.