mirror of https://github.com/axmolengine/axmol.git
62 lines
1.9 KiB
Lua
62 lines
1.9 KiB
Lua
|
|
--------------------------------
|
|
-- @module PhysicsJointLimit
|
|
-- @extend PhysicsJoint
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsJointLimit] setAnchr2
|
|
-- @param self
|
|
-- @param #cc.math::Vector2 array
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsJointLimit] setAnchr1
|
|
-- @param self
|
|
-- @param #cc.math::Vector2 array
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsJointLimit] setMax
|
|
-- @param self
|
|
-- @param #float float
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsJointLimit] getAnchr2
|
|
-- @param self
|
|
-- @return math::Vector2#math::Vector2 ret (return value: cc.math::Vector2)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsJointLimit] getAnchr1
|
|
-- @param self
|
|
-- @return math::Vector2#math::Vector2 ret (return value: cc.math::Vector2)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsJointLimit] getMin
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsJointLimit] getMax
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#PhysicsJointLimit] setMin
|
|
-- @param self
|
|
-- @param #float float
|
|
|
|
--------------------------------
|
|
-- overload function: construct(cc.PhysicsBody, cc.PhysicsBody, cc.math::Vector2, cc.math::Vector2, float, float)
|
|
--
|
|
-- overload function: construct(cc.PhysicsBody, cc.PhysicsBody, cc.math::Vector2, cc.math::Vector2)
|
|
--
|
|
-- @function [parent=#PhysicsJointLimit] construct
|
|
-- @param self
|
|
-- @param #cc.PhysicsBody physicsbody
|
|
-- @param #cc.PhysicsBody physicsbody
|
|
-- @param #cc.math::Vector2 array
|
|
-- @param #cc.math::Vector2 array
|
|
-- @param #float float
|
|
-- @param #float float
|
|
-- @return PhysicsJointLimit#PhysicsJointLimit ret (retunr value: cc.PhysicsJointLimit)
|
|
|
|
return nil
|