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

37 lines
767 B
C++
Raw Normal View History

#ifndef MM_SDF3D_SHAPE_CONE_H
#define MM_SDF3D_SHAPE_CONE_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 MMSdf3dShapeCone : public MMNode {
GDCLASS(MMSdf3dShapeCone, 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
int get_axis() const;
void set_axis(const int val);
2022-06-16 15:29:08 +02:00
float get_angle() const;
void set_angle(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
MMSdf3dShapeCone();
~MMSdf3dShapeCone();
2022-06-16 15:29:08 +02:00
protected:
static void _bind_methods();
2022-06-16 15:29:08 +02:00
Ref<MMNodeUniversalProperty> output;
//export(int, "+X,-X,+Y,-Y,+Z,-Z")
int axis;
float angle;
2022-06-16 15:29:08 +02:00
};
#endif