mirror of https://github.com/axmolengine/axmol.git
33 lines
906 B
Lua
33 lines
906 B
Lua
|
|
--------------------------------
|
|
-- @module EaseElastic
|
|
-- @extend ActionEase
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- set period of the wave in radians.
|
|
-- @function [parent=#EaseElastic] setPeriod
|
|
-- @param self
|
|
-- @param #float fPeriod
|
|
-- @return EaseElastic#EaseElastic self (return value: cc.EaseElastic)
|
|
|
|
--------------------------------
|
|
-- get period of the wave in radians. default is 0.3
|
|
-- @function [parent=#EaseElastic] getPeriod
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseElastic] clone
|
|
-- @param self
|
|
-- @return EaseElastic#EaseElastic ret (return value: cc.EaseElastic)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#EaseElastic] reverse
|
|
-- @param self
|
|
-- @return EaseElastic#EaseElastic ret (return value: cc.EaseElastic)
|
|
|
|
return nil
|