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 */
|
2010-10-06 11:02:44 +00:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup collada
|
2011-02-21 08:38:53 +00:00
|
|
|
*/
|
|
|
|
|
|
2010-10-06 11:02:44 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "COLLADASWBindMaterial.h"
|
|
|
|
|
|
|
|
|
|
#include "DNA_object_types.h"
|
|
|
|
|
|
|
|
|
|
class InstanceWriter {
|
|
|
|
|
protected:
|
2012-06-22 16:16:58 +00:00
|
|
|
void add_material_bindings(COLLADASW::BindMaterial &bind_material,
|
|
|
|
|
Object *ob,
|
|
|
|
|
bool active_uv_only);
|
2010-10-06 11:02:44 +00:00
|
|
|
};
|