voxelman/props/prop_data_mesh.h

41 lines
795 B
C
Raw Normal View History

2019-11-07 21:32:31 +01:00
#ifndef PROP_DATA_MESH_H
#define PROP_DATA_MESH_H
2019-09-22 02:46:21 +02:00
#include "core/math/vector3.h"
2020-01-09 04:29:05 +01:00
#include "prop_data_entry.h"
2019-09-22 02:46:21 +02:00
#include "scene/resources/texture.h"
2019-12-24 03:22:17 +01:00
#include "../../mesh_data_resource/mesh_data_resource.h"
2019-09-22 02:46:21 +02:00
2019-11-07 21:32:31 +01:00
class PropDataMesh : public PropDataEntry {
GDCLASS(PropDataMesh, PropDataEntry);
2020-01-09 04:29:05 +01:00
2019-09-22 02:46:21 +02:00
public:
Ref<MeshDataResource> get_mesh() const;
void set_mesh(const Ref<MeshDataResource> mesh);
Ref<Texture> get_texture() const;
void set_texture(const Ref<Texture> texture);
bool get_snap_to_mesh();
void set_snap_to_mesh(bool value);
Vector3 get_snap_axis();
void set_snap_axis(Vector3 value);
2019-11-07 21:32:31 +01:00
PropDataMesh();
~PropDataMesh();
2019-09-22 02:46:21 +02:00
protected:
static void _bind_methods();
private:
bool _snap_to_mesh;
Vector3 _snap_axis;
2019-09-22 02:46:21 +02:00
Ref<MeshDataResource> _mesh;
Ref<Texture> _texture;
2019-09-22 02:46:21 +02:00
};
#endif