Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sl_plus_open_sim_static.py « wm.collada_export « operator « presets « io_scene_collada - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e2efcaa7275af59db11ffabaaa4611e2c27f371 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import bpy
op = bpy.context.active_operator

op.apply_modifiers = True
op.export_mesh_type = 0
op.export_mesh_type_selection = 'view'
op.selected = True
op.include_children = False
op.include_armatures = False
op.include_shapekeys = False
op.deform_bones_only = False
op.active_uv_only = True
op.include_uv_textures = True
op.use_texture_copies = True
op.triangulate = True
op.use_object_instantiation = False
op.sort_by_name = True
op.open_sim = False