pandemonium_engine/modules/material_maker/nodes/other/output_image.h

32 lines
638 B
C++
Raw Normal View History

2022-06-18 11:53:46 +02:00
#ifndef MM_OUTPUT_IMAGE_H
#define MM_OUTPUT_IMAGE_H
2022-06-16 15:29:08 +02:00
2022-06-18 11:53:46 +02:00
#include "../mm_node.h"
#include "../mm_node_universal_property.h"
2022-06-16 15:29:08 +02:00
2022-06-18 11:53:46 +02:00
class MMOutputImage : public MMNode {
GDCLASS(MMOutputImage, MMNode);
2022-06-16 15:29:08 +02:00
2022-06-18 11:53:46 +02:00
public:
Ref<MMNodeUniversalProperty> get_image();
void set_image(const Ref<MMNodeUniversalProperty> &val);
2022-06-16 15:29:08 +02:00
2022-06-18 11:53:46 +02:00
String get_postfix();
void set_postfix(const String &val);
2022-06-16 15:29:08 +02:00
2022-06-18 11:53:46 +02:00
void _init_properties();
void _register_methods(MMGraphNode *mm_graph_node);
void _render(const Ref<MMMaterial> &material);
2022-06-16 15:29:08 +02:00
2022-06-18 11:53:46 +02:00
MMOutputImage();
~MMOutputImage();
2022-06-16 15:29:08 +02:00
2022-06-18 11:53:46 +02:00
protected:
static void _bind_methods();
2022-06-16 15:29:08 +02:00
2022-06-18 11:53:46 +02:00
Ref<MMNodeUniversalProperty> image;
String postfix;
2022-06-16 15:29:08 +02:00
};
#endif