-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinit.py
36 lines (33 loc) · 965 Bytes
/
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
#lazypic blender python setting file
import os
import sys
import bpy
import time
sys.path.append("%s/lib" % os.path.dirname(__file__))
#import custom python files.
from Wiki import *
from Init import *
from PreviewRender import *
from ExportAlembic import *
from AllRender import *
from RemoveDuplicateMaterial import *
from SetGround import *
def register():
bpy.utils.register_class(Wiki)
bpy.utils.register_class(Init)
# Transform
bpy.utils.register_class(SetGround)
# Render
bpy.utils.register_class(PreviewRender)
bpy.utils.register_class(AllRender)
# Material
bpy.utils.register_class(RemoveDuplicateMaterial)
# Export Alembic for Nuke and Unreal
bpy.utils.register_class(ExportAlembic)
bpy.utils.register_class(LazypicExportAbcCam)
bpy.utils.register_class(LazypicExportAbcProjectionCam)
bpy.utils.register_class(LazypicExportAbcMesh)
bpy.utils.register_class(LazypicExportAbcCard)
if __name__ == "__main__":
register()