fix virtools export fatal errors

This commit is contained in:
2023-12-03 18:14:20 +08:00
parent 70dd525315
commit 5c34bbad38
4 changed files with 29 additions and 32 deletions

View File

@ -350,6 +350,7 @@ def save_other_texture(tex: bpy.types.Image, filepath: str) -> None:
@param tex[in] The saving texture
@param filepath[in] The absolute path to saving file.
"""
# MARK: must use keyword to assign param otherwise blender will throw error.
tex.save(filepath = filepath)
#endregion