Views
Fixture:getBoundingBox
Available since LÖVE 0.8.0 |
This method is not supported in earlier versions. |
Returns the points of the fixture bounding box. In case the fixture has multiple childern a 1-based index can be specified.
Function
Synopsis
topLeftX, topLeftY, bottomRightX, bottomRightY = Fixture:getBoundingBox( index )
Arguments
number index (1)
- The fixture child to get the bounding box of.
Returns
number topLeftX
- The x position of the top-left point.
number topLeftY
- The y position of the top-left point.
number bottomRightX
- The x position of the bottom-right point.
number bottomRightY
- The y position of the bottom-right point.
See Also