Difference between revisions of "Canvas:getWrap"

(Created page with "{{newin|0.8.0|080|type=function}} Gets the wrapping properties of a Canvas. This functions returns the currently set horizontal and vertical wrapping modes for ...")
 
m
Line 15: Line 15:
 
== See Also ==
 
== See Also ==
 
* [[parent::Canvas]]
 
* [[parent::Canvas]]
 +
* [[Canvas:setWrap]]
 
* [[WrapMode]]
 
* [[WrapMode]]
 
[[Category:Functions]]
 
[[Category:Functions]]

Revision as of 22:34, 5 February 2012

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

Gets the wrapping properties of a Canvas.

This functions returns the currently set horizontal and vertical wrapping modes for the Canvas.

Function

Synopsis

horiz, vert = Canvas:getWrap( )

Arguments

None

Returns

WrapMode horiz
Horizontal wrapping mode of the Canvas.
WrapMode vert
Vertical wrapping mode of the Canvas.

See Also

Other Languages