Skip to content

Commit

Permalink
fix incorrect enum property. fix #10
Browse files Browse the repository at this point in the history
  • Loading branch information
skarndev authored May 26, 2023
1 parent cb38205 commit c76ebf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions umodel_tools/asset_importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ class AssetImporter:
description="Format of textures expected to be in the UModel export directory.",
items=[
('.png', '.png', '', 0),
('.dds', '.dds', '', 0),
('.tga', '.tga', '', 0)
('.dds', '.dds', '', 1),
('.tga', '.tga', '', 2)
],
default='.png'
)
Expand Down

0 comments on commit c76ebf7

Please sign in to comment.