mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-30 21:09:19 +01:00
Enabled the fill nodes and disabled tonality.
This commit is contained in:
parent
f1226b3519
commit
08529315ca
@ -136,20 +136,20 @@ sources = [
|
||||
"nodes/gradient/gradient.cpp",
|
||||
"nodes/gradient/circular_gradient.cpp",
|
||||
|
||||
"nodes/filter/tonality.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/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",
|
||||
|
@ -139,6 +139,7 @@ SOFTWARE.
|
||||
#include "nodes/filter/combine.h"
|
||||
#include "nodes/filter/decompose.h"
|
||||
#include "nodes/filter/emboss.h"
|
||||
*/
|
||||
#include "nodes/filter/fill_channel.h"
|
||||
#include "nodes/filter/fill_to_color.h"
|
||||
#include "nodes/filter/fill_to_position.h"
|
||||
@ -146,14 +147,15 @@ SOFTWARE.
|
||||
#include "nodes/filter/fill_to_random_grey.h"
|
||||
#include "nodes/filter/fill_to_size.h"
|
||||
#include "nodes/filter/fill_to_uv.h"
|
||||
/*
|
||||
#include "nodes/filter/greyscale.h"
|
||||
#include "nodes/filter/invert.h"
|
||||
#include "nodes/filter/make_tileable.h"
|
||||
#include "nodes/filter/math.h"
|
||||
#include "nodes/filter/quantize.h"
|
||||
#include "nodes/filter/swap_channels.h"
|
||||
*/
|
||||
#include "nodes/filter/tonality.h"
|
||||
*/
|
||||
|
||||
static _MMAlgos *_mm_algos_singleton = nullptr;
|
||||
|
||||
@ -328,9 +330,10 @@ void register_material_maker_types() {
|
||||
ClassDB::register_class<MMCircularGradient>();
|
||||
MMAlgos::register_node_class("Gradient", "MMCircularGradient");
|
||||
|
||||
/*
|
||||
ClassDB::register_class<MMTonality>();
|
||||
MMAlgos::register_node_class("Filter", "MMTonality");
|
||||
/*
|
||||
|
||||
ClassDB::register_class<MMSwapChannels>();
|
||||
MMAlgos::register_node_class("Filter", "MMSwapChannels");
|
||||
ClassDB::register_class<MMQuantize>();
|
||||
@ -344,6 +347,7 @@ void register_material_maker_types() {
|
||||
ClassDB::register_class<MMGreyscale>();
|
||||
MMAlgos::register_node_class("Filter", "MMGreyscale");
|
||||
ClassDB::register_class<MMFillToUv>();
|
||||
*/
|
||||
MMAlgos::register_node_class("Filter", "MMFillToUv");
|
||||
ClassDB::register_class<MMFillToSize>();
|
||||
MMAlgos::register_node_class("Filter", "MMFillToSize");
|
||||
@ -357,6 +361,7 @@ void register_material_maker_types() {
|
||||
MMAlgos::register_node_class("Filter", "MMFillToColor");
|
||||
ClassDB::register_class<MMFillChannel>();
|
||||
MMAlgos::register_node_class("Filter", "MMFillChannel");
|
||||
/*
|
||||
ClassDB::register_class<MMEmboss>();
|
||||
MMAlgos::register_node_class("Filter", "MMEmboss");
|
||||
ClassDB::register_class<MMDecompose>();
|
||||
|
Loading…
Reference in New Issue
Block a user