mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-18 18:06:56 +01:00
43 lines
989 B
C++
43 lines
989 B
C++
#ifndef MM_SD_OP_BOOL_H
|
|
#define MM_SD_OP_BOOL_H
|
|
|
|
#include "../mm_node.h"
|
|
#include "../mm_node_universal_property.h"
|
|
|
|
class MMSdOpBool : public MMNode {
|
|
GDCLASS(MMSdOpBool, MMNode);
|
|
|
|
public:
|
|
Ref<MMNodeUniversalProperty> get_input1();
|
|
void set_input1(const Ref<MMNodeUniversalProperty> &val);
|
|
|
|
Ref<MMNodeUniversalProperty> get_input2();
|
|
void set_input2(const Ref<MMNodeUniversalProperty> &val);
|
|
|
|
Ref<MMNodeUniversalProperty> get_output();
|
|
void set_output(const Ref<MMNodeUniversalProperty> &val);
|
|
|
|
int get_operation() const;
|
|
void set_operation(const int val);
|
|
|
|
void _init_properties();
|
|
void _register_methods(MMGraphNode *mm_graph_node);
|
|
Variant _get_property_value(const Vector2 &uv);
|
|
|
|
void on_input_changed();
|
|
|
|
MMSdOpBool();
|
|
~MMSdOpBool();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
Ref<MMNodeUniversalProperty> input1;
|
|
Ref<MMNodeUniversalProperty> input2;
|
|
Ref<MMNodeUniversalProperty> output;
|
|
//export(int, "Union,Substraction,Intersection")
|
|
int operation;
|
|
};
|
|
|
|
#endif
|