Difference between revisions of "love.physics.newFixture"
m |
Corn-cube-2 (talk | contribs) (Never mind, I'm just bad at reading docs. Sorry for polluting the change history) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
Creates and attaches a [[Fixture]] to a body. | Creates and attaches a [[Fixture]] to a body. | ||
+ | Note that the [[Shape]] object is copied rather than kept as a reference when the Fixture is created. To get the Shape object that the Fixture owns, use [[Fixture:getShape]]. | ||
== Function == | == Function == | ||
=== Synopsis === | === Synopsis === | ||
Line 9: | Line 10: | ||
=== Arguments === | === Arguments === | ||
{{param|Body|body|The body which gets the fixture attached.}} | {{param|Body|body|The body which gets the fixture attached.}} | ||
− | {{param|Shape|shape|The shape | + | {{param|Shape|shape|The shape to be copied to the fixture.}} |
{{param|number|density (1)|The density of the fixture.}} | {{param|number|density (1)|The density of the fixture.}} | ||
=== Returns === | === Returns === | ||
{{param|Fixture|fixture|The new fixture.}} | {{param|Fixture|fixture|The new fixture.}} | ||
+ | |||
+ | == Notes == | ||
+ | Creating a Fixture may change the mass of the Body it's attached to. | ||
== See Also == | == See Also == |
Latest revision as of 20:00, 4 August 2022
Available since LÖVE 0.8.0 |
This function is not supported in earlier versions. |
Creates and attaches a Fixture to a body.
Note that the Shape object is copied rather than kept as a reference when the Fixture is created. To get the Shape object that the Fixture owns, use Fixture:getShape.
Function
Synopsis
fixture = love.physics.newFixture( body, shape, density )
Arguments
Body body
- The body which gets the fixture attached.
Shape shape
- The shape to be copied to the fixture.
number density (1)
- The density of the fixture.
Returns
Fixture fixture
- The new fixture.
Notes
Creating a Fixture may change the mass of the Body it's attached to.
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