Initial commit

This commit is contained in:
Segey Lapin
2021-07-31 03:30:12 +03:00
commit 91cf9d2d34
249 changed files with 27582 additions and 0 deletions

17
modules/meshops/meshops.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef MESHOPS_H
#define MESHOPS_H
#include <core/reference.h>
#include <scene/resources/mesh.h>
#include <scene/resources/material.h>
class MeshOps: public Reference {
GDCLASS(MeshOps, Reference)
protected:
static void _bind_methods();
public:
static MeshOps *get_singleton();
Array merge_meshes(const Array &surfaces, const Array &xforms) const;
};
#endif