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

32 lines
680 B
C++
Raw Normal View History

#ifndef MM_SDF3D_SHAPE_SPHERE_H
#define MM_SDF3D_SHAPE_SPHERE_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 MMSdf3dShapeSphere : public MMNode {
GDCLASS(MMSdf3dShapeSphere, 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
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
MMSdf3dShapeSphere();
~MMSdf3dShapeSphere();
2022-06-16 15:29:08 +02:00
protected:
static void _bind_methods();
2022-06-16 15:29:08 +02:00
Ref<MMNodeUniversalProperty> output;
float radius;
2022-06-16 15:29:08 +02:00
};
#endif