Changeset View
Changeset View
Standalone View
Standalone View
source/blender/collada/collada.cpp
| Show First 20 Lines • Show All 72 Lines • ▼ Show 20 Lines | int collada_export(Scene *sce, | ||||
| int apply_modifiers, | int apply_modifiers, | ||||
| BC_export_mesh_type export_mesh_type, | BC_export_mesh_type export_mesh_type, | ||||
| int selected, | int selected, | ||||
| int include_children, | int include_children, | ||||
| int include_armatures, | int include_armatures, | ||||
| int include_shapekeys, | int include_shapekeys, | ||||
| int deform_bones_only, | int deform_bones_only, | ||||
| int sampling_rate, | |||||
| int active_uv_only, | int active_uv_only, | ||||
| BC_export_texture_type export_texture_type, | BC_export_texture_type export_texture_type, | ||||
| int use_texture_copies, | int use_texture_copies, | ||||
| int triangulate, | int triangulate, | ||||
| int use_object_instantiation, | int use_object_instantiation, | ||||
| int use_blender_profile, | int use_blender_profile, | ||||
| Show All 9 Lines | int collada_export(Scene *sce, | ||||
| export_settings.apply_modifiers = apply_modifiers != 0; | export_settings.apply_modifiers = apply_modifiers != 0; | ||||
| export_settings.export_mesh_type = export_mesh_type; | export_settings.export_mesh_type = export_mesh_type; | ||||
| export_settings.selected = selected != 0; | export_settings.selected = selected != 0; | ||||
| export_settings.include_children = include_children != 0; | export_settings.include_children = include_children != 0; | ||||
| export_settings.include_armatures = include_armatures != 0; | export_settings.include_armatures = include_armatures != 0; | ||||
| export_settings.include_shapekeys = include_shapekeys != 0; | export_settings.include_shapekeys = include_shapekeys != 0; | ||||
| export_settings.deform_bones_only = deform_bones_only != 0; | export_settings.deform_bones_only = deform_bones_only != 0; | ||||
| export_settings.sampling_rate = sampling_rate; | |||||
| export_settings.active_uv_only = active_uv_only != 0; | export_settings.active_uv_only = active_uv_only != 0; | ||||
| export_settings.export_texture_type = export_texture_type; | export_settings.export_texture_type = export_texture_type; | ||||
| export_settings.use_texture_copies = use_texture_copies != 0; | export_settings.use_texture_copies = use_texture_copies != 0; | ||||
| export_settings.triangulate = triangulate != 0; | export_settings.triangulate = triangulate != 0; | ||||
| export_settings.use_object_instantiation = use_object_instantiation != 0; | export_settings.use_object_instantiation = use_object_instantiation != 0; | ||||
| export_settings.use_blender_profile = use_blender_profile != 0; | export_settings.use_blender_profile = use_blender_profile != 0; | ||||
| Show All 37 Lines | |||||