2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @module Waves3D
|
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
|
|
|
--------------------------------
|
2014-08-29 16:12:40 +08:00
|
|
|
-- returns the amplitude rate
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#Waves3D] getAmplitudeRate
|
|
|
|
-- @param self
|
|
|
|
-- @return float#float ret (return value: float)
|
|
|
|
|
|
|
|
--------------------------------
|
2014-08-29 16:12:40 +08:00
|
|
|
-- sets the amplitude to the effect
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#Waves3D] setAmplitude
|
|
|
|
-- @param self
|
2014-08-29 16:12:40 +08:00
|
|
|
-- @param #float amplitude
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-08-29 16:12:40 +08:00
|
|
|
-- sets the ampliture rate
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#Waves3D] setAmplitudeRate
|
|
|
|
-- @param self
|
2014-08-29 16:12:40 +08:00
|
|
|
-- @param #float amplitudeRate
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-08-29 16:12:40 +08:00
|
|
|
-- returns the amplitude of the effect
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#Waves3D] getAmplitude
|
|
|
|
-- @param self
|
|
|
|
-- @return float#float ret (return value: float)
|
|
|
|
|
|
|
|
--------------------------------
|
2014-08-29 16:12:40 +08:00
|
|
|
-- creates an action with duration, grid size, waves and amplitude
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#Waves3D] create
|
|
|
|
-- @param self
|
2014-08-29 16:12:40 +08:00
|
|
|
-- @param #float duration
|
|
|
|
-- @param #size_table gridSize
|
|
|
|
-- @param #unsigned int waves
|
|
|
|
-- @param #float amplitude
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @return Waves3D#Waves3D ret (return value: cc.Waves3D)
|
|
|
|
|
2014-03-18 15:55:30 +08:00
|
|
|
--------------------------------
|
2014-08-29 16:12:40 +08:00
|
|
|
--
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @function [parent=#Waves3D] clone
|
|
|
|
-- @param self
|
|
|
|
-- @return Waves3D#Waves3D ret (return value: cc.Waves3D)
|
|
|
|
|
|
|
|
--------------------------------
|
2014-08-29 16:12:40 +08:00
|
|
|
--
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @function [parent=#Waves3D] update
|
|
|
|
-- @param self
|
2014-08-29 16:12:40 +08:00
|
|
|
-- @param #float time
|
2014-03-18 15:55:30 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
return nil
|