2023-08-16 00:20:26 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
2023-05-31 16:19:06 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
2013-02-09 16:19:30 +00:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup collada
|
2013-02-09 16:19:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2018-02-28 15:53:00 +01:00
|
|
|
typedef struct ImportSettings {
|
2013-02-09 16:19:30 +00:00
|
|
|
bool import_units;
|
2022-09-14 15:25:31 +02:00
|
|
|
bool custom_normals;
|
2014-11-29 13:24:26 +01:00
|
|
|
bool find_chains;
|
2016-06-03 18:26:12 +02:00
|
|
|
bool auto_connect;
|
2014-12-01 20:31:42 +01:00
|
|
|
bool fix_orientation;
|
2014-11-29 13:24:26 +01:00
|
|
|
int min_chain_length;
|
2013-02-09 16:19:30 +00:00
|
|
|
char *filepath;
|
2017-03-23 00:07:05 +01:00
|
|
|
bool keep_bind_info;
|
2018-02-28 15:53:00 +01:00
|
|
|
} ImportSettings;
|