pandemonium_engine/modules/material_maker/nodes/simple/image.h

32 lines
620 B
C++
Raw Normal View History

2022-06-17 10:17:17 +02:00
#ifndef MM_IMAGE_H
#define MM_IMAGE_H
2022-06-16 15:29:08 +02:00
2022-06-17 10:17:17 +02:00
#include "../mm_node.h"
#include "../mm_node_universal_property.h"
2022-06-16 15:29:08 +02:00
2022-06-17 10:17:17 +02:00
class MMImage : public MMNode {
GDCLASS(MMImage, MMNode);
2022-06-16 15:29:08 +02:00
2022-06-17 10:17:17 +02:00
public:
Ref<MMNodeUniversalProperty> get_image();
void set_image(const Ref<MMNodeUniversalProperty> &val);
2022-06-16 15:29:08 +02:00
2022-06-17 10:17:17 +02:00
String get_image_path();
void set_image_path(const String &val);
2022-06-16 15:29:08 +02:00
2022-06-17 10:17:17 +02:00
void _init_properties();
void _register_methods(MMGraphNode *mm_graph_node);
Color _get_value_for(const Vector2 &uv, const int pseed);
2022-06-16 15:29:08 +02:00
2022-06-17 10:17:17 +02:00
MMImage();
~MMImage();
2022-06-16 15:29:08 +02:00
2022-06-17 10:17:17 +02:00
protected:
static void _bind_methods();
2022-06-16 15:29:08 +02:00
2022-06-17 10:17:17 +02:00
Ref<MMNodeUniversalProperty> image;
String image_path;
2022-06-16 15:29:08 +02:00
};
#endif