nodes: added more default values to nodes

This commit is contained in:
itsmattkc
2020-05-09 18:55:42 +10:00
parent d653070a9d
commit 25b35725f6
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ TrigonometryNode::TrigonometryNode()
method_in_->set_is_keyframable(false);
AddInput(method_in_);
x_in_ = new NodeInput(QStringLiteral("x_in"), NodeParam::kFloat);
x_in_ = new NodeInput(QStringLiteral("x_in"), NodeParam::kFloat, 0.0);
AddInput(x_in_);
}