From 76ae7950d588f0e6c0febc1ef6eb33557c7979e5 Mon Sep 17 00:00:00 2001 From: lnd3 Date: Wed, 18 Sep 2024 02:50:44 +0200 Subject: [PATCH] Fix order. --- .../include/nodegraph/operations/NodeGraphOpOutput.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/nodegraph/include/nodegraph/operations/NodeGraphOpOutput.h b/packages/nodegraph/include/nodegraph/operations/NodeGraphOpOutput.h index 20f98131..cd1807d9 100644 --- a/packages/nodegraph/include/nodegraph/operations/NodeGraphOpOutput.h +++ b/packages/nodegraph/include/nodegraph/operations/NodeGraphOpOutput.h @@ -75,8 +75,8 @@ namespace l::nodegraph { public: GraphOutputPlot(NodeGraphBase* node, int32_t plotSamples) : NodeGraphOp(node, "Plot"), - mPlotSamples(plotSamples), - mNodeInputManager(*this) + mNodeInputManager(*this), + mPlotSamples(plotSamples) { mNodeInputManager.AddInputBase(InputTypeBase::SAMPLED, AddInput("Plot", 0.0f, 1, -1.0f, 1.0f)); AddOutput("Plot", 0.0f, mPlotSamples);