pandemonium_engine/modules/material_maker/nodes/sdf3d/sdf3d_shape_box.h

36 lines
735 B
C++
Raw Normal View History

#ifndef MM_SDF3D_SHAPE_BOX_H
#define MM_SDF3D_SHAPE_BOX_H
2022-06-16 15:29:08 +02:00
#include "../mm_node.h"
#include "../mm_node_universal_property.h"
2022-06-16 15:29:08 +02:00
class MMSdf3dShapeBox : public MMNode {
GDCLASS(MMSdf3dShapeBox, MMNode);
2022-06-16 15:29:08 +02:00
public:
Ref<MMNodeUniversalProperty> get_output();
void set_output(const Ref<MMNodeUniversalProperty> &val);
2022-06-16 15:29:08 +02:00
Vector3 get_size();
void set_size(const Vector3 &val);
2022-06-16 15:29:08 +02:00
float get_radius() const;
void set_radius(const float val);
2022-06-16 15:29:08 +02:00
void _init_properties();
void _register_methods(MMGraphNode *mm_graph_node);
Vector2 _get_property_value_sdf3d(const Vector3 &uv3);
2022-06-16 15:29:08 +02:00
MMSdf3dShapeBox();
~MMSdf3dShapeBox();
2022-06-16 15:29:08 +02:00
protected:
static void _bind_methods();
2022-06-16 15:29:08 +02:00
Ref<MMNodeUniversalProperty> output;
Vector3 size;
float radius;
2022-06-16 15:29:08 +02:00
};
#endif