removed last of the NodeOutput dependencies
Since all Nodes have an output that provides all output values now, we now never need to add an output from a Node derivative. These changes remove the last of them and disable the ability to add more outputs from a derivative.
This commit is contained in:
@@ -24,11 +24,11 @@ BlendNode::BlendNode()
|
||||
{
|
||||
base_input_ = new NodeInput("base_in");
|
||||
base_input_->set_data_type(NodeParam::kTexture);
|
||||
AddParameter(base_input_);
|
||||
AddInput(base_input_);
|
||||
|
||||
blend_input_ = new NodeInput("blend_in");
|
||||
blend_input_->set_data_type(NodeParam::kTexture);
|
||||
AddParameter(blend_input_);
|
||||
AddInput(blend_input_);
|
||||
}
|
||||
|
||||
QString BlendNode::Category() const
|
||||
|
||||
Reference in New Issue
Block a user