-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path__init__.py
30 lines (24 loc) · 1.08 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python3
from . import auto_load
# Original plugin by DarkStarSword (https://github.com/DarkStarSword/3d-fixes/blob/master/blender_3dmigoto.py)
# Updated to support 3.0 by MicroKnightmare from the DOA modding discord
####### AGMG Discord Contributors #######
# Modified by SilentNightSound#7430 to add Genshin support and some more Genshin-specific features
# QOL feature (ignoring hidden meshes while exporting) added by HazrateGolabi#1364
# HummyR#8131
# merged several iterations of this plugin for other games back into a single one by LeoTorreZ
bl_info = {
"name": "XXMI_Tools",
"blender": (2, 93, 0),
"author": "Ian Munsie ([email protected]), SilentNightSound#7430, LeoTorreZ",
"location": "File > Import-Export",
"description": "Imports meshes dumped with 3DMigoto's frame analysis and exports meshes suitable for re-injection.",
"category": "Import-Export",
"tracker_url": "https://github.com/leotorrez/XXMITools",
"version" : (1, 4, 3),
}
auto_load.init()
def register():
auto_load.register()
def unregister():
auto_load.unregister()