X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Fsrc%2Fsynfig%2Fvaluenode_repeat_gradient.cpp;h=601a17642231b8d9c6c9e762e2319e1d7550ce2d;hb=d4cb326591ea23f82d341eb368b3d183b46f56c7;hp=c9ad14ace50b285bac82547897ec59080ec023e7;hpb=adfc80c126f482d7ea2bac38001a2c4a7c7df88c;p=synfig.git diff --git a/synfig-core/src/synfig/valuenode_repeat_gradient.cpp b/synfig-core/src/synfig/valuenode_repeat_gradient.cpp index c9ad14a..601a176 100644 --- a/synfig-core/src/synfig/valuenode_repeat_gradient.cpp +++ b/synfig-core/src/synfig/valuenode_repeat_gradient.cpp @@ -242,3 +242,46 @@ ValueNode_Repeat_Gradient::check_type(ValueBase::Type type) { return type==ValueBase::TYPE_GRADIENT; } + +LinkableValueNode::Vocab +ValueNode_Repeat_Gradient::get_children_vocab_vfunc()const +{ + LinkableValueNode::Vocab ret; + + ret.push_back(ParamDesc(ValueBase(),"gradient") + .set_local_name(_("Gradient")) + .set_description(_("The source gradient to repeat")) + ); + + ret.push_back(ParamDesc(ValueBase(),"count") + .set_local_name(_("Count")) + .set_description(_("The number of repetition of the gradient")) + ); + + ret.push_back(ParamDesc(ValueBase(),"width") + .set_local_name(_("Width")) + .set_description(_("Specifies how much biased is the source gradeint in the repetition [0,1]")) + ); + + ret.push_back(ParamDesc(ValueBase(),"specify_start") + .set_local_name(_("Specify Start")) + .set_description(_("When checked, 'Start Color' is used as the start of the resulting gradient")) + ); + + ret.push_back(ParamDesc(ValueBase(),"specify_end") + .set_local_name(_("Specify End")) + .set_description(_("When checked, 'End Color' is used as the start of the resulting gradient")) + ); + + ret.push_back(ParamDesc(ValueBase(),"start_color") + .set_local_name(_("Start Color")) + .set_description(_("Used as the start of the resulting gradient")) + ); + + ret.push_back(ParamDesc(ValueBase(),"end_color") + .set_local_name(_("End Color")) + .set_description(_("Used as the end of the resulting gradient")) + ); + + return ret; +}