-------------------------------- -- @module LayerGradient -- @extend LayerColor -- @parent_module cc -------------------------------- -- Returns the start color of the gradient -- @function [parent=#LayerGradient] getStartColor -- @param self -- @return color3b_table#color3b_table ret (return value: color3b_table) -------------------------------- -- -- @function [parent=#LayerGradient] isCompressedInterpolation -- @param self -- @return bool#bool ret (return value: bool) -------------------------------- -- Returns the start opacity of the gradient -- @function [parent=#LayerGradient] getStartOpacity -- @param self -- @return unsigned char#unsigned char ret (return value: unsigned char) -------------------------------- -- Sets the directional vector that will be used for the gradient.
-- The default value is vertical direction (0,-1). -- @function [parent=#LayerGradient] setVector -- @param self -- @param #vec2_table alongVector -------------------------------- -- Returns the start opacity of the gradient -- @function [parent=#LayerGradient] setStartOpacity -- @param self -- @param #unsigned char startOpacity -------------------------------- -- Whether or not the interpolation will be compressed in order to display all the colors of the gradient both in canonical and non canonical vectors
-- Default: true -- @function [parent=#LayerGradient] setCompressedInterpolation -- @param self -- @param #bool compressedInterpolation -------------------------------- -- Returns the end opacity of the gradient -- @function [parent=#LayerGradient] setEndOpacity -- @param self -- @param #unsigned char endOpacity -------------------------------- -- Returns the directional vector used for the gradient -- @function [parent=#LayerGradient] getVector -- @param self -- @return vec2_table#vec2_table ret (return value: vec2_table) -------------------------------- -- Sets the end color of the gradient -- @function [parent=#LayerGradient] setEndColor -- @param self -- @param #color3b_table endColor -------------------------------- -- Returns the end color of the gradient -- @function [parent=#LayerGradient] getEndColor -- @param self -- @return color3b_table#color3b_table ret (return value: color3b_table) -------------------------------- -- Returns the end opacity of the gradient -- @function [parent=#LayerGradient] getEndOpacity -- @param self -- @return unsigned char#unsigned char ret (return value: unsigned char) -------------------------------- -- Sets the start color of the gradient -- @function [parent=#LayerGradient] setStartColor -- @param self -- @param #color3b_table startColor -------------------------------- -- @overload self, color4b_table, color4b_table -- @overload self -- @overload self, color4b_table, color4b_table, vec2_table -- @function [parent=#LayerGradient] create -- @param self -- @param #color4b_table start -- @param #color4b_table end -- @param #vec2_table v -- @return LayerGradient#LayerGradient ret (retunr value: cc.LayerGradient) -------------------------------- -- -- @function [parent=#LayerGradient] getDescription -- @param self -- @return string#string ret (return value: string) return nil