mirror of https://github.com/axmolengine/axmol.git
54 lines
1.4 KiB
Lua
54 lines
1.4 KiB
Lua
|
|
--------------------------------
|
|
-- @module Waves3D
|
|
-- @extend Grid3DAction
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- returns the amplitude rate
|
|
-- @function [parent=#Waves3D] getAmplitudeRate
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
-- sets the amplitude to the effect
|
|
-- @function [parent=#Waves3D] setAmplitude
|
|
-- @param self
|
|
-- @param #float amplitude
|
|
|
|
--------------------------------
|
|
-- sets the ampliture rate
|
|
-- @function [parent=#Waves3D] setAmplitudeRate
|
|
-- @param self
|
|
-- @param #float amplitudeRate
|
|
|
|
--------------------------------
|
|
-- returns the amplitude of the effect
|
|
-- @function [parent=#Waves3D] getAmplitude
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
-- creates an action with duration, grid size, waves and amplitude
|
|
-- @function [parent=#Waves3D] create
|
|
-- @param self
|
|
-- @param #float duration
|
|
-- @param #size_table gridSize
|
|
-- @param #unsigned int waves
|
|
-- @param #float amplitude
|
|
-- @return Waves3D#Waves3D ret (return value: cc.Waves3D)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#Waves3D] clone
|
|
-- @param self
|
|
-- @return Waves3D#Waves3D ret (return value: cc.Waves3D)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#Waves3D] update
|
|
-- @param self
|
|
-- @param #float time
|
|
|
|
return nil
|