mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-23 04:16:50 +01:00
Temporarily disabled filter nodes to try to debug an issue with github actions.
This commit is contained in:
parent
0fe6e5325e
commit
9375356924
@ -136,28 +136,28 @@ sources = [
|
||||
"nodes/gradient/gradient.cpp",
|
||||
"nodes/gradient/circular_gradient.cpp",
|
||||
|
||||
"nodes/filter/tonality.cpp",
|
||||
"nodes/filter/swap_channels.cpp",
|
||||
"nodes/filter/quantize.cpp",
|
||||
"nodes/filter/math.cpp",
|
||||
"nodes/filter/make_tileable.cpp",
|
||||
"nodes/filter/invert.cpp",
|
||||
"nodes/filter/greyscale.cpp",
|
||||
"nodes/filter/fill_to_uv.cpp",
|
||||
"nodes/filter/fill_to_size.cpp",
|
||||
"nodes/filter/fill_to_random_grey.cpp",
|
||||
"nodes/filter/fill_to_random_color.cpp",
|
||||
"nodes/filter/fill_to_position.cpp",
|
||||
"nodes/filter/fill_to_color.cpp",
|
||||
"nodes/filter/fill_channel.cpp",
|
||||
"nodes/filter/emboss.cpp",
|
||||
"nodes/filter/decompose.cpp",
|
||||
"nodes/filter/combine.cpp",
|
||||
"nodes/filter/colorize.cpp",
|
||||
"nodes/filter/brightness_contrast.cpp",
|
||||
"nodes/filter/blur_gaussian.cpp",
|
||||
"nodes/filter/blend.cpp",
|
||||
"nodes/filter/adjust_hsv.cpp",
|
||||
#"nodes/filter/tonality.cpp",
|
||||
#"nodes/filter/swap_channels.cpp",
|
||||
#"nodes/filter/quantize.cpp",
|
||||
#"nodes/filter/math.cpp",
|
||||
#"nodes/filter/make_tileable.cpp",
|
||||
#"nodes/filter/invert.cpp",
|
||||
#"nodes/filter/greyscale.cpp",
|
||||
#"nodes/filter/fill_to_uv.cpp",
|
||||
#"nodes/filter/fill_to_size.cpp",
|
||||
#"nodes/filter/fill_to_random_grey.cpp",
|
||||
#"nodes/filter/fill_to_random_color.cpp",
|
||||
#"nodes/filter/fill_to_position.cpp",
|
||||
#"nodes/filter/fill_to_color.cpp",
|
||||
#"nodes/filter/fill_channel.cpp",
|
||||
#"nodes/filter/emboss.cpp",
|
||||
#"nodes/filter/decompose.cpp",
|
||||
#"nodes/filter/combine.cpp",
|
||||
#"nodes/filter/colorize.cpp",
|
||||
#"nodes/filter/brightness_contrast.cpp",
|
||||
#"nodes/filter/blur_gaussian.cpp",
|
||||
#"nodes/filter/blend.cpp",
|
||||
#"nodes/filter/adjust_hsv.cpp",
|
||||
]
|
||||
|
||||
if env["tools"]:
|
||||
|
@ -1,8 +1,6 @@
|
||||
#ifndef MM_TONALITY_H
|
||||
#define MM_TONALITY_H
|
||||
|
||||
#include "core/math/vector2.h"
|
||||
|
||||
#include "../bases/curve_base.h"
|
||||
#include "../mm_node_universal_property.h"
|
||||
|
||||
|
@ -130,6 +130,7 @@ SOFTWARE.
|
||||
#include "nodes/gradient/gradient.h"
|
||||
#include "nodes/gradient/radial_gradient.h"
|
||||
|
||||
/*
|
||||
#include "nodes/filter/adjust_hsv.h"
|
||||
#include "nodes/filter/blend.h"
|
||||
#include "nodes/filter/blur_gaussian.h"
|
||||
@ -152,6 +153,7 @@ SOFTWARE.
|
||||
#include "nodes/filter/quantize.h"
|
||||
#include "nodes/filter/swap_channels.h"
|
||||
#include "nodes/filter/tonality.h"
|
||||
*/
|
||||
|
||||
static _MMAlgos *_mm_algos_singleton = nullptr;
|
||||
|
||||
@ -325,7 +327,7 @@ void register_material_maker_types() {
|
||||
MMAlgos::register_node_class("Gradient", "MMGradient");
|
||||
ClassDB::register_class<MMCircularGradient>();
|
||||
MMAlgos::register_node_class("Gradient", "MMCircularGradient");
|
||||
|
||||
/*
|
||||
ClassDB::register_class<MMTonality>();
|
||||
MMAlgos::register_node_class("Filter", "MMTonality");
|
||||
ClassDB::register_class<MMSwapChannels>();
|
||||
@ -370,7 +372,7 @@ void register_material_maker_types() {
|
||||
MMAlgos::register_node_class("Filter", "MMBlend");
|
||||
ClassDB::register_class<MMAdjustHsv>();
|
||||
MMAlgos::register_node_class("Filter", "MMAdjustHsv");
|
||||
|
||||
*/
|
||||
_mm_algos_singleton = memnew(_MMAlgos);
|
||||
Engine::get_singleton()->add_singleton(Engine::Singleton("MMAlgos", _MMAlgos::get_singleton()));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user