Difference between revisions of "love.physics.getMeter"

m
m
Line 15: Line 15:
 
{{param|number|scale|The scale factor as an integer.}}
 
{{param|number|scale|The scale factor as an integer.}}
 
== See Also ==
 
== See Also ==
* [[parent::love.physics]]
+
* [[parent::love.physics (Español)]]
* [[love.physics.setMeter]]
+
* [[love.physics.setMeter (Español)]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Returns the meter scale factor.}}
 
{{#set:Description=Returns the meter scale factor.}}

Revision as of 14:29, 17 December 2024

Available since LÖVE 0.8.0
This function is not supported in earlier versions.

Returns the meter scale factor.

All coordinates in the physics module are divided by this number, creating a convenient way to draw the objects directly to the screen without the need for graphics transformations.

It is recommended to create shapes no larger than 10 times the scale. This is important because Box2D is tuned to work well with shape sizes from 0.1 to 10 meters.

Function

Synopsis

scale = love.physics.getMeter( )

Arguments

None.

Returns

number scale
The scale factor as an integer.

See Also


Other Languages