Noise node (#1848)

* Add a noise generator node

* Cleanup

* Correctly name CMakeLists.txt

* Typo
This commit is contained in:
ThomasWilshaw
2022-01-25 15:13:32 -08:00
committed by GitHub
parent 6152e8545a
commit 314167be40
7 changed files with 200 additions and 0 deletions
+3
View File
@@ -33,6 +33,7 @@
#include "distort/transform/transformdistortnode.h"
#include "effect/opacity/opacityeffect.h"
#include "generator/matrix/matrix.h"
#include "generator/noise/noise.h"
#include "generator/polygon/polygon.h"
#include "generator/shape/shapenode.h"
#include "generator/solid/solid.h"
@@ -255,6 +256,8 @@ Node *NodeFactory::CreateFromFactoryIndex(const NodeFactory::InternalID &id)
return new NodeGroup();
case kOpacityEffect:
return new OpacityEffect();
case kNoiseGenerator:
return new NoiseGeneratorNode();
case kInternalNodeCount:
break;