Difference between revisions of "love.physics.newWorld"

m
m
 
Line 15: Line 15:
  
 
== Function ==
 
== Function ==
{{oldin|[[0.8.0]]|080|type=variants|plural=y}}
+
{{oldin|[[0.8.0]]|080|type=variant}}
 
This function creates a new World with the given size, no gravity and sleeping turned on.
 
This function creates a new World with the given size, no gravity and sleeping turned on.
 
=== Synopsis ===
 
=== Synopsis ===
Line 29: Line 29:
 
{{param|World|world|A World object.}}
 
{{param|World|world|A World object.}}
 
== Function ==
 
== Function ==
 +
{{oldin|[[0.8.0]]|080|type=variant}}
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">

Latest revision as of 01:25, 30 January 2016

Creates a new World.

Function

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

Synopsis

world = love.physics.newWorld( xg, yg, sleep )

Arguments

number xg (0)
The x component of gravity.
number yg (0)
The y component of gravity.
boolean sleep (true)
Whether the bodies in this world are allowed to sleep.

Returns

World world
A brave new World.

Function

Removed in LÖVE 0.8.0
This variant is not supported in that and later versions.

This function creates a new World with the given size, no gravity and sleeping turned on.

Synopsis

world = love.physics.newWorld( x1, y1, x2, y2 )

Arguments

number x1
The smallest x position in the world.
number y1
The smallest y position in the world.
number x2
The largest x position in the world.
number y2
The largest y position in the world.

Returns

World world
A World object.

Function

Removed in LÖVE 0.8.0
This variant is not supported in that and later versions.

Synopsis

world = love.physics.newWorld( x1, y1, x2, y2, xg, yg, sleep )

Arguments

number x1
The smallest x position in the world.
number y1
The smallest y position in the world.
number x2
The largest x position in the world.
number y2
The largest y position in the world.
number xg
The x component of gravity.
number yg
The y component of gravity.
boolean sleep (true)
Whether sleep is possible in the world.

Returns

World world
A brave new World.

See Also


Other Languages