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
|
|
|
|
2019-11-07 21:32:31 +01:00
|
|
|
#include "prop_data_entry.h"
|
2019-10-10 23:51:05 +02:00
|
|
|
#include "core/math/vector3.h"
|
2019-09-22 02:46:21 +02:00
|
|
|
|
2019-11-05 21:22:39 +01: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);
|
2019-09-22 02:46:21 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
Ref<MeshDataResource> get_mesh() const;
|
|
|
|
void set_mesh(const Ref<MeshDataResource> mesh);
|
|
|
|
|
2019-11-05 21:22:39 +01:00
|
|
|
Ref<Texture> get_texture() const;
|
|
|
|
void set_texture(const Ref<Texture> texture);
|
|
|
|
|
2019-10-10 23:51:05 +02:00
|
|
|
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:
|
2019-10-10 23:51:05 +02:00
|
|
|
bool _snap_to_mesh;
|
|
|
|
Vector3 _snap_axis;
|
2019-09-22 02:46:21 +02:00
|
|
|
Ref<MeshDataResource> _mesh;
|
2019-11-05 21:22:39 +01:00
|
|
|
Ref<Texture> _texture;
|
2019-09-22 02:46:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|