mirror of https://github.com/axmolengine/axmol.git
32 lines
851 B
Lua
32 lines
851 B
Lua
|
|
--------------------------------
|
|
-- @module ActionInstant
|
|
-- @extend FiniteTimeAction
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ActionInstant] step
|
|
-- @param self
|
|
-- @param #float float
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ActionInstant] clone
|
|
-- @param self
|
|
-- @return ActionInstant#ActionInstant ret (return value: cc.ActionInstant)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ActionInstant] reverse
|
|
-- @param self
|
|
-- @return ActionInstant#ActionInstant ret (return value: cc.ActionInstant)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ActionInstant] isDone
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#ActionInstant] update
|
|
-- @param self
|
|
-- @param #float float
|
|
|
|
return nil
|