forked from commanderson/CA_ASW_Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
42 lines (37 loc) · 1.09 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
31
32
33
34
35
36
37
38
39
40
41
42
#----------------------------------------------------------
# File __init__.py
#----------------------------------------------------------
import bpy
from bpy.types import Operator
from . import renderTools
from . import textureTools
from . import GLOBALS
bl_info = {
"name": "Chubs and Aerthas ArcSystemWorks Tools",
"author": "Chubs & Aerthas Veras",
"version": (1, 0),
"blender": (2, 80, 0),
"location": "View3D",
"description": "Tools made to work with ArcSystemWorks models exported from Umodel as GLTF",
"warning": "",
"doc_url": "",
"category": "Rigging",
}
classes = (
textureTools
)
classes = (
GLOBALS.ArmatureDrop,
renderTools.CA_PT_RenderPanel,
textureTools.CA_PT_TexEditPanel,
textureTools.ImgRefresh,
textureTools.CleanUnused,
textureTools.AlphOn,
textureTools.AlphOff,
textureTools.ApplyColor,
textureTools.ColorsDrop,
textureTools.SelectColorFolder,
renderTools.ClearMatOP,
renderTools.BoneInFront
)
register, unregister = bpy.utils.register_classes_factory(classes)