#ifndef MM_ICHING_H #define MM_ICHING_H #include "../mm_node.h" #include "../mm_node_universal_property.h" class MMIching : public MMNode { GDCLASS(MMIching, MMNode); public: Ref get_image(); void set_image(const Ref &val); Vector2 get_size(); void set_size(const Vector2 &val); void _init_properties(); void _register_methods(MMGraphNode *mm_graph_node); void _render(const Ref &material); Color _get_value_for(const Vector2 &uv, const int pseed); MMIching(); ~MMIching(); protected: static void _bind_methods(); Ref image; Vector2 size; }; #endif