Skip to content

Commit e02b5a0

Browse files
author
nkx
committed
update version number
1 parent ecbd94b commit e02b5a0

3 files changed

Lines changed: 12 additions & 9 deletions

File tree

io_mesh_w3d/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212

1313
from io_mesh_w3d.blender_addon_updater import addon_updater_ops
1414

15-
VERSION = (0, 8, 0)
15+
VERSION = (0, 8, 1)
1616

1717
bl_info = {
1818
'name': 'Import/Export Westwood W3D Format (.w3d/.w3x)',
1919
'author': 'OpenSage Developers',
20-
'version': (0, 8, 0),
20+
'version': VERSION,
2121
"blender": (2, 90, 0),
2222
'location': 'File > Import/Export > Westwood W3D (.w3d/.w3x)',
2323
'description': 'Import or Export the Westwood W3D-Format (.w3d/.w3x)',

io_mesh_w3d/w3x/export_w3x.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def save(context, export_settings, data_context):
3636
# obbox
3737
for box in data_context.collision_boxes:
3838
if export_settings['individual_files']:
39-
path = directory + "." + box.identifier() + context.filename_ext
39+
path = directory + box.identifier() + context.filename_ext
4040
context.info('Saving file :' + path)
4141
write_struct(box, path)
4242
else:

readme_plugin_cn.txt

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,20 @@ GitHub地址:https://github.com/nkx111/OpenSAGE.BlenderPlugin
1212

1313
使用说明:
1414
1. 导入:文件-导入-w3d/w3x-选择文件。导入模型请选择 container 文件,一般带有 SKN 或者 CTR 的后缀。导入模型后再导入动画。
15-
2. 导出:文件-导出-w3d/w3x。注意要选择格式为“Westwood 3D XML”,默认是“Westwood 3D Binary”。默认导出 mesh + hierarchy + container 到一个文件,也可以选择同时导出动画。不要选择导出单独的文件或网格。
16-
17-
注意事项:
18-
1. 需要回到物体模式进行导出
15+
2. 导出:文件-导出-w3d/w3x。注意要选择格式为“Westwood 3D XML”,默认是“Westwood 3D Binary”。默认导出 mesh + hierarchy + container 到一个文件,也可以选择同时导出动画。可以选择每个物体导出单独的文件(EA 原版导出风格)。可以自动创建用过的贴图文件。
1916

2017
暂时未实现:
2118
1. 同时导入和管理多个动画
2219
2. 动画透明度channel问题、多channel动画导出疑似存在异常
2320

24-
2025/5/29 更新:
25-
贴图搜索路径
21+
2025/6/7(0.8.1) 更新:
22+
修复【分离顶点】导致顶点法向异常的问题。(当一个顶点有多个uv坐标时(即该顶点附近贴图不连续),需要【分离顶点】)
23+
允许不退回物体模式导出。导出时自动退回物体模式
24+
网格和碰撞箱支持物体级别的缩放
25+
优化了导出界面的选项,优化了【分文件导出】的效果。新增自动创建贴图文件的导出选项。
26+
27+
2025/5/29(0.8.0) 更新:
28+
贴图搜索路径加入了当前blender文件的路径
2629
版本号更新为0.8
2730

2831
2025/5/16 更新:

0 commit comments

Comments
 (0)