mirror of https://github.com/axmolengine/axmol.git
56 lines
1.4 KiB
Lua
56 lines
1.4 KiB
Lua
|
|
--------------------------------
|
|
-- @module ActionInterval
|
|
-- @extend FiniteTimeAction
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ActionInterval] getAmplitudeRate
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ActionInterval] setAmplitudeRate
|
|
-- @param self
|
|
-- @param #float amp
|
|
|
|
--------------------------------
|
|
-- how many seconds had elapsed since the actions started to run.
|
|
-- @function [parent=#ActionInterval] getElapsed
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ActionInterval] startWithTarget
|
|
-- @param self
|
|
-- @param #cc.Node target
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ActionInterval] step
|
|
-- @param self
|
|
-- @param #float dt
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ActionInterval] clone
|
|
-- @param self
|
|
-- @return ActionInterval#ActionInterval ret (return value: cc.ActionInterval)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ActionInterval] reverse
|
|
-- @param self
|
|
-- @return ActionInterval#ActionInterval ret (return value: cc.ActionInterval)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#ActionInterval] isDone
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
return nil
|