2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @module Waves
|
2014-03-20 10:21:28 +08:00
|
|
|
-- @extend Grid3DAction
|
2014-06-25 17:36:50 +08:00
|
|
|
-- @parent_module cc
|
2014-03-18 15:55:30 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
--------------------------------
|
2015-03-19 11:55:42 +08:00
|
|
|
-- brief Get the amplitude rate of the effect.<br>
|
|
|
|
-- return Return the amplitude rate of the effect.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#Waves] getAmplitudeRate
|
|
|
|
-- @param self
|
|
|
|
-- @return float#float ret (return value: float)
|
|
|
|
|
|
|
|
--------------------------------
|
2015-03-19 11:55:42 +08:00
|
|
|
-- brief Set the amplitude to the effect.<br>
|
|
|
|
-- param amplitude The value of amplitude will be set.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#Waves] setAmplitude
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #float amplitude
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return Waves#Waves self (return value: cc.Waves)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2015-03-19 11:55:42 +08:00
|
|
|
-- brief Set the ampliture rate of the effect.<br>
|
|
|
|
-- param amplitudeRate The value of amplitude rate will be set.
|
2014-03-21 14:26:33 +08:00
|
|
|
-- @function [parent=#Waves] setAmplitudeRate
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #float amplitudeRate
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return Waves#Waves self (return value: cc.Waves)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2015-03-19 11:55:42 +08:00
|
|
|
-- brief Get the amplitude of the effect.<br>
|
|
|
|
-- return Return the amplitude of the effect.
|
2014-03-21 14:26:33 +08:00
|
|
|
-- @function [parent=#Waves] getAmplitude
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @param self
|
2014-03-21 14:26:33 +08:00
|
|
|
-- @return float#float ret (return value: float)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2015-03-19 11:55:42 +08:00
|
|
|
-- brief Create the action with amplitude, horizontal sin, vertical sin, grid size, waves count and duration.<br>
|
|
|
|
-- param duration Specify the duration of the Waves action. It's a value in seconds.<br>
|
|
|
|
-- param gridSize Specify the size of the grid.<br>
|
|
|
|
-- param waves Specify the waves count of the Waves action.<br>
|
|
|
|
-- param amplitude Specify the amplitude of the Waves action.<br>
|
|
|
|
-- param horizontal Specify whether waves on horizontal.<br>
|
|
|
|
-- param vertical Specify whether waves on vertical.<br>
|
|
|
|
-- return If the creation sucess, return a pointer of Waves action; otherwise, return nil.
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#Waves] create
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #float duration
|
|
|
|
-- @param #size_table gridSize
|
|
|
|
-- @param #unsigned int waves
|
|
|
|
-- @param #float amplitude
|
|
|
|
-- @param #bool horizontal
|
|
|
|
-- @param #bool vertical
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @return Waves#Waves ret (return value: cc.Waves)
|
|
|
|
|
2014-03-18 15:55:30 +08:00
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @function [parent=#Waves] clone
|
|
|
|
-- @param self
|
|
|
|
-- @return Waves#Waves ret (return value: cc.Waves)
|
|
|
|
|
|
|
|
--------------------------------
|
2015-03-19 11:55:42 +08:00
|
|
|
--
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @function [parent=#Waves] update
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #float time
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return Waves#Waves self (return value: cc.Waves)
|
2014-03-18 15:55:30 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
return nil
|