X-Git-Url: https://git.pterodactylus.net/?p=synfig.git;a=blobdiff_plain;f=synfig-core%2Fsrc%2Fsynfig%2Fvaluenode_repeat_gradient.cpp;h=85be66d1260a95646be4f92b210e5358f775cb1b;hp=c9ad14ace50b285bac82547897ec59080ec023e7;hb=8eed22b9657ac7cb1881eab5c7b5c3d1f0c69468;hpb=72fee47109d8d1f6e4c5043ab60200e61357636a diff --git a/synfig-core/src/synfig/valuenode_repeat_gradient.cpp b/synfig-core/src/synfig/valuenode_repeat_gradient.cpp index c9ad14a..85be66d 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_param_vocab()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; +}