mirror of https://github.com/axmolengine/axmol.git
36 lines
887 B
Lua
36 lines
887 B
Lua
|
|
--------------------------------
|
|
-- @module FlipY
|
|
-- @extend ActionInstant
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
-- Create the action.<br>
|
|
-- param y Flips the sprite vertically if true.<br>
|
|
-- return An autoreleased FlipY object.
|
|
-- @function [parent=#FlipY] create
|
|
-- @param self
|
|
-- @param #bool y
|
|
-- @return FlipY#FlipY ret (return value: cc.FlipY)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#FlipY] clone
|
|
-- @param self
|
|
-- @return FlipY#FlipY ret (return value: cc.FlipY)
|
|
|
|
--------------------------------
|
|
-- param time In seconds.
|
|
-- @function [parent=#FlipY] update
|
|
-- @param self
|
|
-- @param #float time
|
|
-- @return FlipY#FlipY self (return value: cc.FlipY)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#FlipY] reverse
|
|
-- @param self
|
|
-- @return FlipY#FlipY ret (return value: cc.FlipY)
|
|
|
|
return nil
|