TerraForge3D  2.3.1
3D Terrain And Landscape Generator
VisualizerNode.h
1#pragma once
2
3#include "Base/NodeEditor/NodeEditor.h"
4#include <vector>
5
6/*
7*
8* Warning : This node is may not have any real value!
9* Its made mainly for debugging and fun!
10*
11*/
12
13
15{
16public:
17
18
19 virtual NodeOutput Evaluate(NodeInputParam input, NodeEditorPin *pin);
20
21 virtual void Load(nlohmann::json data);
22 virtual nlohmann::json Save();
23 virtual void OnRender();
24
26
27 std::vector<float> map;
28 NodeInputParam inputC;
29 std::mutex mutex;
30};
31
a class to store JSON values
Definition: json.hpp:17860