mirror of https://github.com/axmolengine/axmol.git
50 lines
1.2 KiB
Lua
50 lines
1.2 KiB
Lua
|
|
--------------------------------
|
|
-- @module Lens3D
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Lens3D] setPosition
|
|
-- @param self
|
|
-- @param #point_table point
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Lens3D] setConcave
|
|
-- @param self
|
|
-- @param #bool bool
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Lens3D] setLensEffect
|
|
-- @param self
|
|
-- @param #float float
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Lens3D] getPosition
|
|
-- @param self
|
|
-- @return point_table#point_table ret (return value: point_table)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Lens3D] getLensEffect
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Lens3D] create
|
|
-- @param self
|
|
-- @param #float float
|
|
-- @param #size_table size
|
|
-- @param #point_table point
|
|
-- @param #float float
|
|
-- @return Lens3D#Lens3D ret (return value: cc.Lens3D)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Lens3D] clone
|
|
-- @param self
|
|
-- @return Lens3D#Lens3D ret (return value: cc.Lens3D)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#Lens3D] update
|
|
-- @param self
|
|
-- @param #float float
|
|
|
|
return nil
|