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

InstanceWriter.h « collada « io « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 967616bfb052ed8258fb366ab83917a804d3572c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0-or-later */

/** \file
 * \ingroup collada
 */

#pragma once

#include "COLLADASWBindMaterial.h"

#include "DNA_object_types.h"

class InstanceWriter {
 protected:
  void add_material_bindings(COLLADASW::BindMaterial &bind_material,
                             Object *ob,
                             bool active_uv_only);
};