Skip to content

Commit

Permalink
Merge pull request #57 from Robert-N7/single_bone
Browse files Browse the repository at this point in the history
Single bone option and bone transformation fixes
  • Loading branch information
Robert-N7 authored Apr 30, 2021
2 parents 010572e + 40a68bd commit 9d1774e
Show file tree
Hide file tree
Showing 117 changed files with 4,078 additions and 719 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
*.brres
*.szs
*.d
tracks/

# Pycharm
__pycache*
Expand Down
3 changes: 0 additions & 3 deletions .idea/.gitignore

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/inspectionProfiles/profiles_settings.xml

This file was deleted.

4 changes: 0 additions & 4 deletions .idea/misc.xml

This file was deleted.

26 changes: 0 additions & 26 deletions .idea/mkwii.iml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

17 changes: 0 additions & 17 deletions .idea/runConfigurations/Unittests_in_tests.xml

This file was deleted.

23 changes: 0 additions & 23 deletions .idea/runConfigurations/abmatt.xml

This file was deleted.

23 changes: 0 additions & 23 deletions .idea/runConfigurations/analyze.xml

This file was deleted.

23 changes: 0 additions & 23 deletions .idea/runConfigurations/build.xml

This file was deleted.

23 changes: 0 additions & 23 deletions .idea/runConfigurations/convert_dae.xml

This file was deleted.

23 changes: 0 additions & 23 deletions .idea/runConfigurations/integration_tests.xml

This file was deleted.

23 changes: 0 additions & 23 deletions .idea/runConfigurations/main_window.xml

This file was deleted.

23 changes: 0 additions & 23 deletions .idea/runConfigurations/time_test.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ preset = 'preset' preset_name;
save = 'save' [filename] ['as' destination] ['overwrite']
copy = 'copy' type;
paste = 'paste' type;
convert = 'convert' filename ['to' destination] ['no-colors'] ['no-normals']
convert = 'convert' filename ['to' destination] ['--no-colors'] ['--no-normals'] ['--single-bone']
selection = name ['in' container]
container = ['brres' filename] ['model' name];
Expand Down
4 changes: 2 additions & 2 deletions abmatt/brres/brres.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ def set_str(self, key, value):
raise ValueError('Unknown key "{}"'.format(key))

def import_model(self, file_path):
from abmatt.converters.convert_dae import DaeConverter2
converter = DaeConverter2(self, file_path)
from abmatt.converters.convert_dae import DaeConverter
converter = DaeConverter(self, file_path)
converter.load_model()
self.mark_modified()

Expand Down
Loading

0 comments on commit 9d1774e

Please sign in to comment.