Difference between revisions of "love.physics.newGearJoint"
(Moved 0.8.0 variant to the top.) |
m |
||
Line 6: | Line 6: | ||
== Function == | == Function == | ||
− | {{newin|[[0.8.0]]|type=variant}} | + | {{newin|[[0.8.0]]|080|type=variant}} |
=== Synopsis === | === Synopsis === | ||
<source lang="lua"> | <source lang="lua"> | ||
Line 20: | Line 20: | ||
== Function == | == Function == | ||
− | {{oldin|[[0.8.0]]|type=variant}} | + | {{oldin|[[0.8.0]]|080|type=variant}} |
=== Synopsis === | === Synopsis === | ||
<source lang="lua"> | <source lang="lua"> |
Revision as of 13:32, 4 May 2012
Create a gear joint connecting two joints.
The gear joint connects two joints that must be either prismatic or revolute joints. Using this joint requires that the joints it uses connect their respective bodies to the ground and have the ground as the first body. When destroying the bodies and joints you must make sure you destroy the gear joint before the other joints.
The gear joint has a ratio the determines how the angular or distance values of the connected joints relate to each other. The formula coordinate1 + ratio * coordinate2 always has a constant value that is set when the gear joint is created.
Contents
Function
Available since LÖVE 0.8.0 |
This variant is not supported in earlier versions. |
Synopsis
joint = love.physics.newGearJoint( joint1, joint2, ratio, collideConnected )
Arguments
Joint joint1
- The first joint to connect with a gear joint.
Joint joint2
- The second joint to connect with a gear joint.
number ratio (1)
- The gear ratio.
boolean collideConnected (false)
- Specifies whether the two bodies should collide with each other.
Returns
GearJoint joint
- The new gear joint.
Function
Removed in LÖVE 0.8.0 |
This variant is not supported in that and later versions. |
Synopsis
joint = love.physics.newGearJoint( joint1, joint2, ratio )
Arguments
Joint joint1
- The first joint to connect with a gear joint.
Joint joint2
- The second joint to connect with a gear joint.
number ratio (1)
- The gear ratio.
Returns
Joint joint
- The new gear joint.
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info