pandemonium_engine/modules/material_maker/nodes/uniform/uniform.h

28 lines
550 B
C++
Raw Normal View History

#ifndef MM_UNIFORM_H
#define MM_UNIFORM_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 MMUniform : public MMNode {
GDCLASS(MMUniform, MMNode);
2022-06-16 15:29:08 +02:00
public:
Ref<MMNodeUniversalProperty> get_uniform();
void set_uniform(const Ref<MMNodeUniversalProperty> &val);
2022-06-16 15:29:08 +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
MMUniform();
~MMUniform();
2022-06-16 15:29:08 +02:00
protected:
static void _bind_methods();
2022-06-16 15:29:08 +02:00
Ref<MMNodeUniversalProperty> uniform;
2022-06-16 15:29:08 +02:00
};
#endif