├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── __pycache__ ├── FbxCommon.cpython-39.pyc ├── animation_editor.cpython-38.pyc ├── animation_editor.cpython-39.pyc └── create_anim.cpython-38.pyc ├── animation_editor.py ├── animations ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── bca.cpython-37.pyc │ ├── bca.cpython-38.pyc │ ├── bca.cpython-39.pyc │ ├── bck.cpython-37.pyc │ ├── bck.cpython-38.pyc │ ├── bck.cpython-39.pyc │ ├── bla.cpython-37.pyc │ ├── bla.cpython-38.pyc │ ├── bla.cpython-39.pyc │ ├── blk.cpython-37.pyc │ ├── blk.cpython-38.pyc │ ├── blk.cpython-39.pyc │ ├── bpk.cpython-37.pyc │ ├── bpk.cpython-38.pyc │ ├── bpk.cpython-39.pyc │ ├── brk.cpython-37.pyc │ ├── brk.cpython-38.pyc │ ├── brk.cpython-39.pyc │ ├── btk.cpython-37.pyc │ ├── btk.cpython-38.pyc │ ├── btk.cpython-39.pyc │ ├── btp.cpython-37.pyc │ ├── btp.cpython-38.pyc │ ├── btp.cpython-39.pyc │ ├── bva.cpython-37.pyc │ ├── bva.cpython-39.pyc │ ├── fbx_scripts.cpython-37.pyc │ ├── fbx_scripts.cpython-39.pyc │ ├── general_animation.cpython-37.pyc │ ├── general_animation.cpython-38.pyc │ └── general_animation.cpython-39.pyc ├── bca.py ├── bck.py ├── bla.py ├── blk.py ├── bpk.py ├── brk.py ├── btk.py ├── btp.py ├── bva.py ├── fbx_scripts.py └── general_animation.py ├── icons ├── linear.png ├── smooth.png └── sound.png ├── massedit_text_maker.py ├── read_bls.py ├── run.bat ├── settings.ini ├── themes ├── dark.qss ├── fall.qss ├── peaches and plums.qss └── toadette.qss └── widgets ├── __pycache__ ├── add_frames.cpython-37.pyc ├── add_frames.cpython-39.pyc ├── create_anim.cpython-37.pyc ├── create_anim.cpython-38.pyc ├── create_anim.cpython-39.pyc ├── mass_edit.cpython-39.pyc ├── open_folder.cpython-39.pyc ├── quick_change.cpython-38.pyc ├── quick_change.cpython-39.pyc ├── select_model.cpython-39.pyc ├── sound_editor.cpython-39.pyc ├── theme_handler.cpython-39.pyc ├── tree_item.cpython-37.pyc ├── tree_item.cpython-39.pyc ├── tree_view.cpython-37.pyc ├── tree_view.cpython-38.pyc ├── tree_view.cpython-39.pyc ├── yaz0.cpython-37.pyc └── yaz0.cpython-39.pyc ├── add_frames.py ├── concatenate.py ├── create_anim.py ├── mass_edit.py ├── open_folder.py ├── quick_change.py ├── rarc.py ├── select_model.py ├── sound_editor.py ├── theme_handler.py ├── tp_sound_ids.txt ├── tree_item.py ├── tree_view.py ├── tww_sound_ids.txt └── yaz0.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | FbxCommon.py 3 | fbxsip.pyd 4 | cxfreeze.bat 5 | *.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/FbxCommon.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/__pycache__/FbxCommon.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/animation_editor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/__pycache__/animation_editor.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/animation_editor.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/__pycache__/animation_editor.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/create_anim.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/__pycache__/create_anim.cpython-38.pyc -------------------------------------------------------------------------------- /animation_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animation_editor.py -------------------------------------------------------------------------------- /animations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /animations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /animations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /animations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /animations/__pycache__/bca.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/bca.cpython-37.pyc -------------------------------------------------------------------------------- /animations/__pycache__/bca.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/bca.cpython-38.pyc -------------------------------------------------------------------------------- /animations/__pycache__/bca.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/bca.cpython-39.pyc -------------------------------------------------------------------------------- /animations/__pycache__/bck.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/bck.cpython-37.pyc -------------------------------------------------------------------------------- /animations/__pycache__/bck.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/bck.cpython-38.pyc -------------------------------------------------------------------------------- /animations/__pycache__/bck.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/bck.cpython-39.pyc -------------------------------------------------------------------------------- /animations/__pycache__/bla.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/bla.cpython-37.pyc -------------------------------------------------------------------------------- /animations/__pycache__/bla.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/bla.cpython-38.pyc -------------------------------------------------------------------------------- /animations/__pycache__/bla.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/bla.cpython-39.pyc -------------------------------------------------------------------------------- /animations/__pycache__/blk.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/blk.cpython-37.pyc -------------------------------------------------------------------------------- /animations/__pycache__/blk.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/blk.cpython-38.pyc -------------------------------------------------------------------------------- /animations/__pycache__/blk.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/blk.cpython-39.pyc -------------------------------------------------------------------------------- /animations/__pycache__/bpk.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/bpk.cpython-37.pyc -------------------------------------------------------------------------------- /animations/__pycache__/bpk.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/bpk.cpython-38.pyc -------------------------------------------------------------------------------- /animations/__pycache__/bpk.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/bpk.cpython-39.pyc -------------------------------------------------------------------------------- /animations/__pycache__/brk.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/brk.cpython-37.pyc -------------------------------------------------------------------------------- /animations/__pycache__/brk.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/brk.cpython-38.pyc -------------------------------------------------------------------------------- /animations/__pycache__/brk.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/brk.cpython-39.pyc -------------------------------------------------------------------------------- /animations/__pycache__/btk.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/btk.cpython-37.pyc -------------------------------------------------------------------------------- /animations/__pycache__/btk.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/btk.cpython-38.pyc -------------------------------------------------------------------------------- /animations/__pycache__/btk.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/btk.cpython-39.pyc -------------------------------------------------------------------------------- /animations/__pycache__/btp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/btp.cpython-37.pyc -------------------------------------------------------------------------------- /animations/__pycache__/btp.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/btp.cpython-38.pyc -------------------------------------------------------------------------------- /animations/__pycache__/btp.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/btp.cpython-39.pyc -------------------------------------------------------------------------------- /animations/__pycache__/bva.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/bva.cpython-37.pyc -------------------------------------------------------------------------------- /animations/__pycache__/bva.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/bva.cpython-39.pyc -------------------------------------------------------------------------------- /animations/__pycache__/fbx_scripts.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/fbx_scripts.cpython-37.pyc -------------------------------------------------------------------------------- /animations/__pycache__/fbx_scripts.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/fbx_scripts.cpython-39.pyc -------------------------------------------------------------------------------- /animations/__pycache__/general_animation.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/general_animation.cpython-37.pyc -------------------------------------------------------------------------------- /animations/__pycache__/general_animation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/general_animation.cpython-38.pyc -------------------------------------------------------------------------------- /animations/__pycache__/general_animation.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/__pycache__/general_animation.cpython-39.pyc -------------------------------------------------------------------------------- /animations/bca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/bca.py -------------------------------------------------------------------------------- /animations/bck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/bck.py -------------------------------------------------------------------------------- /animations/bla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/bla.py -------------------------------------------------------------------------------- /animations/blk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/blk.py -------------------------------------------------------------------------------- /animations/bpk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/bpk.py -------------------------------------------------------------------------------- /animations/brk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/brk.py -------------------------------------------------------------------------------- /animations/btk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/btk.py -------------------------------------------------------------------------------- /animations/btp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/btp.py -------------------------------------------------------------------------------- /animations/bva.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/bva.py -------------------------------------------------------------------------------- /animations/fbx_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/fbx_scripts.py -------------------------------------------------------------------------------- /animations/general_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/animations/general_animation.py -------------------------------------------------------------------------------- /icons/linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/icons/linear.png -------------------------------------------------------------------------------- /icons/smooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/icons/smooth.png -------------------------------------------------------------------------------- /icons/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/icons/sound.png -------------------------------------------------------------------------------- /massedit_text_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/massedit_text_maker.py -------------------------------------------------------------------------------- /read_bls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/read_bls.py -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- 1 | python "%~dp0animation_editor.py" 2 | pause -------------------------------------------------------------------------------- /settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/settings.ini -------------------------------------------------------------------------------- /themes/dark.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/themes/dark.qss -------------------------------------------------------------------------------- /themes/fall.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/themes/fall.qss -------------------------------------------------------------------------------- /themes/peaches and plums.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/themes/peaches and plums.qss -------------------------------------------------------------------------------- /themes/toadette.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/themes/toadette.qss -------------------------------------------------------------------------------- /widgets/__pycache__/add_frames.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/add_frames.cpython-37.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/add_frames.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/add_frames.cpython-39.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/create_anim.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/create_anim.cpython-37.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/create_anim.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/create_anim.cpython-38.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/create_anim.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/create_anim.cpython-39.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/mass_edit.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/mass_edit.cpython-39.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/open_folder.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/open_folder.cpython-39.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/quick_change.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/quick_change.cpython-38.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/quick_change.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/quick_change.cpython-39.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/select_model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/select_model.cpython-39.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/sound_editor.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/sound_editor.cpython-39.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/theme_handler.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/theme_handler.cpython-39.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/tree_item.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/tree_item.cpython-37.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/tree_item.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/tree_item.cpython-39.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/tree_view.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/tree_view.cpython-37.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/tree_view.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/tree_view.cpython-38.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/tree_view.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/tree_view.cpython-39.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/yaz0.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/yaz0.cpython-37.pyc -------------------------------------------------------------------------------- /widgets/__pycache__/yaz0.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/__pycache__/yaz0.cpython-39.pyc -------------------------------------------------------------------------------- /widgets/add_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/add_frames.py -------------------------------------------------------------------------------- /widgets/concatenate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/concatenate.py -------------------------------------------------------------------------------- /widgets/create_anim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/create_anim.py -------------------------------------------------------------------------------- /widgets/mass_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/mass_edit.py -------------------------------------------------------------------------------- /widgets/open_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/open_folder.py -------------------------------------------------------------------------------- /widgets/quick_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/quick_change.py -------------------------------------------------------------------------------- /widgets/rarc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/rarc.py -------------------------------------------------------------------------------- /widgets/select_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/select_model.py -------------------------------------------------------------------------------- /widgets/sound_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/sound_editor.py -------------------------------------------------------------------------------- /widgets/theme_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/theme_handler.py -------------------------------------------------------------------------------- /widgets/tp_sound_ids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/tp_sound_ids.txt -------------------------------------------------------------------------------- /widgets/tree_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/tree_item.py -------------------------------------------------------------------------------- /widgets/tree_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/tree_view.py -------------------------------------------------------------------------------- /widgets/tww_sound_ids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/tww_sound_ids.txt -------------------------------------------------------------------------------- /widgets/yaz0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarsa129/j3d-animation-editor/HEAD/widgets/yaz0.py --------------------------------------------------------------------------------