mirror of https://github.com/axmolengine/axmol.git
51 lines
1.5 KiB
Lua
51 lines
1.5 KiB
Lua
|
|
--------------------------------
|
|
-- @module PhysicsJointRotaryLimit
|
|
-- @extend PhysicsJoint
|
|
-- @parent_module cc
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#PhysicsJointRotaryLimit] getMax
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#PhysicsJointRotaryLimit] createConstraints
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#PhysicsJointRotaryLimit] setMin
|
|
-- @param self
|
|
-- @param #float min
|
|
-- @return PhysicsJointRotaryLimit#PhysicsJointRotaryLimit self (return value: cc.PhysicsJointRotaryLimit)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#PhysicsJointRotaryLimit] setMax
|
|
-- @param self
|
|
-- @param #float max
|
|
-- @return PhysicsJointRotaryLimit#PhysicsJointRotaryLimit self (return value: cc.PhysicsJointRotaryLimit)
|
|
|
|
--------------------------------
|
|
--
|
|
-- @function [parent=#PhysicsJointRotaryLimit] getMin
|
|
-- @param self
|
|
-- @return float#float ret (return value: float)
|
|
|
|
--------------------------------
|
|
-- @overload self, cc.PhysicsBody, cc.PhysicsBody
|
|
-- @overload self, cc.PhysicsBody, cc.PhysicsBody, float, float
|
|
-- @function [parent=#PhysicsJointRotaryLimit] construct
|
|
-- @param self
|
|
-- @param #cc.PhysicsBody a
|
|
-- @param #cc.PhysicsBody b
|
|
-- @param #float min
|
|
-- @param #float max
|
|
-- @return PhysicsJointRotaryLimit#PhysicsJointRotaryLimit ret (return value: cc.PhysicsJointRotaryLimit)
|
|
|
|
return nil
|