2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @module Lens3D
|
2014-03-20 10:21:28 +08:00
|
|
|
-- @extend Grid3DAction
|
2014-06-25 17:36:50 +08:00
|
|
|
-- @parent_module cc
|
2014-03-18 15:55:30 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#Lens3D] setPosition
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #vec2_table position
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return Lens3D#Lens3D self (return value: cc.Lens3D)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
-- Set whether lens is concave
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#Lens3D] setConcave
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #bool concave
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return Lens3D#Lens3D self (return value: cc.Lens3D)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
-- Set lens center position
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#Lens3D] setLensEffect
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #float lensEffect
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return Lens3D#Lens3D self (return value: cc.Lens3D)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#Lens3D] getPosition
|
|
|
|
-- @param self
|
2014-05-27 14:31:18 +08:00
|
|
|
-- @return vec2_table#vec2_table ret (return value: vec2_table)
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
-- Get lens center position
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#Lens3D] getLensEffect
|
|
|
|
-- @param self
|
|
|
|
-- @return float#float ret (return value: float)
|
|
|
|
|
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
-- creates the action with center position, radius, a grid size and duration
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#Lens3D] create
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #float duration
|
|
|
|
-- @param #size_table gridSize
|
|
|
|
-- @param #vec2_table position
|
|
|
|
-- @param #float radius
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @return Lens3D#Lens3D ret (return value: cc.Lens3D)
|
|
|
|
|
2014-03-18 15:55:30 +08:00
|
|
|
--------------------------------
|
2014-09-02 13:45:07 +08:00
|
|
|
--
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @function [parent=#Lens3D] clone
|
|
|
|
-- @param self
|
|
|
|
-- @return Lens3D#Lens3D ret (return value: cc.Lens3D)
|
|
|
|
|
|
|
|
--------------------------------
|
2015-01-20 16:17:36 +08:00
|
|
|
-- param time in seconds
|
2014-03-18 15:55:30 +08:00
|
|
|
-- @function [parent=#Lens3D] update
|
|
|
|
-- @param self
|
2014-09-02 13:45:07 +08:00
|
|
|
-- @param #float time
|
2015-01-21 17:33:26 +08:00
|
|
|
-- @return Lens3D#Lens3D self (return value: cc.Lens3D)
|
2014-03-18 15:55:30 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
return nil
|