Skip to content

Commit

Permalink
Fix order.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuscu committed Sep 18, 2024
1 parent 7c8b5cc commit 76ae795
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 76ae795

Please sign in to comment.