You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
381 B
Python
13 lines
381 B
Python
4 years ago
|
import bpy.path
|
||
|
import bpy
|
||
|
|
||
|
try:
|
||
|
from .export_anim import *
|
||
|
except:
|
||
|
from export_anim import *
|
||
|
|
||
|
|
||
|
|
||
|
def save_skel(operator, context, scale = 1.0, filepath = "", global_matrix = None, use_mesh_modifiers = True):
|
||
|
return save(operator, context, scale = scale, filepath = filepath, global_matrix = global_matrix, use_mesh_modifiers = use_mesh_modifiers, save_skeleton = True)
|