pandemonium_engine/modules/material_maker/nodes/transform/repeat.h

28 lines
528 B
C++
Raw Normal View History

2022-06-16 21:31:35 +02:00
#ifndef MM_REPEAT_H
#define MM_REPEAT_H
2022-06-16 15:29:08 +02:00
2022-06-16 21:31:35 +02:00
#include "../mm_node.h"
#include "../mm_node_universal_property.h"
2022-06-16 15:29:08 +02:00
2022-06-16 21:31:35 +02:00
class MMRepeat : public MMNode {
GDCLASS(MMRepeat, MMNode);
2022-06-16 15:29:08 +02:00
2022-06-16 21:31:35 +02:00
public:
Ref<MMNodeUniversalProperty> get_input();
void set_input(const Ref<MMNodeUniversalProperty> &val);
2022-06-16 15:29:08 +02:00
2022-06-16 21:31:35 +02:00
void _init_properties();
void _register_methods(MMGraphNode *mm_graph_node);
Variant _get_property_value(const Vector2 &uv);
2022-06-16 15:29:08 +02:00
2022-06-16 21:31:35 +02:00
MMRepeat();
~MMRepeat();
2022-06-16 15:29:08 +02:00
2022-06-16 21:31:35 +02:00
protected:
static void _bind_methods();
2022-06-16 15:29:08 +02:00
2022-06-16 21:31:35 +02:00
Ref<MMNodeUniversalProperty> input;
2022-06-16 15:29:08 +02:00
};
#endif