Difference between revisions of "Quad:setViewport"

(Use 'texture' instead of 'image'.)
 
(7 intermediate revisions by 6 users not shown)
Line 1: Line 1:
 +
Sets the texture coordinates according to a viewport.
  
Sets the texture coordinates according to a viewport.
 
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
Quad:setViewport( x, y, w, h )
+
Quad:setViewport( x, y, w, h, sw, sh )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
 
{{param|number|x|The top-left corner along the x-axis.}}
 
{{param|number|x|The top-left corner along the x-axis.}}
{{param|number|y|The top-right corner along the y-axis.}}
+
{{param|number|y|The top-left corner along the y-axis.}}
 
{{param|number|w|The width of the viewport.}}
 
{{param|number|w|The width of the viewport.}}
 
{{param|number|h|The height of the viewport.}}
 
{{param|number|h|The height of the viewport.}}
 +
{{New feature|0.9.0|
 +
{{param|number|sw|The reference width, the width of the [[Texture]]. (Must be greater than 0.)}}
 +
{{param|number|sh|The reference height, the height of the [[Texture]]. (Must be greater than 0.)}}
 +
}}
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.
 +
 
== See Also ==
 
== See Also ==
 
* [[parent::Quad]]
 
* [[parent::Quad]]
 +
* [[Quad:getViewport]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Sets the texture coordinates according to a viewport.}}
 
{{#set:Description=Sets the texture coordinates according to a viewport.}}
 +
{{#set:Since=000}}
 +
 +
== Other Languages ==
 +
{{i18n|Quad:setViewport}}

Latest revision as of 17:14, 8 December 2020

Sets the texture coordinates according to a viewport.

Function

Synopsis

Quad:setViewport( x, y, w, h, sw, sh )

Arguments

number x
The top-left corner along the x-axis.
number y
The top-left corner along the y-axis.
number w
The width of the viewport.
number h
The height of the viewport.
Available since LÖVE 0.9.0
number sw
The reference width, the width of the Texture. (Must be greater than 0.)
number sh
The reference height, the height of the Texture. (Must be greater than 0.)

Returns

Nothing.

See Also


Other Languages