Difference between revisions of "love.graphics.getBlendMode"

m
m (Newin template)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 +
{{newin|[[0.2.0]]|020|type=function}}
 
Gets the [[BlendMode|blending mode]].
 
Gets the [[BlendMode|blending mode]].
 
== Function ==
 
== Function ==
 +
{{newin|[[0.10.0]]|100|type=variant}}
 +
=== Synopsis ===
 +
<source lang="lua">
 +
mode, alphamode = love.graphics.getBlendMode( )
 +
</source>
 +
=== Arguments ===
 +
None.
 +
=== Returns ===
 +
{{param|BlendMode|mode|The current blend mode.}}
 +
{{param|BlendAlphaMode|alphamode|The current blend alpha mode – it determines how the alpha of drawn objects affects blending.}}
 +
 +
== Function ==
 +
{{oldin|[[0.10.0]]|100|type=variant}}
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
Line 16: Line 30:
 
{{#set:Description=Gets the blending mode.}}
 
{{#set:Description=Gets the blending mode.}}
 
{{#set:Sub-Category=State}}
 
{{#set:Sub-Category=State}}
{{#set:Since=020}}
 
{{#set:PrettySince=[[0.2.0]]}}
 
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.graphics.getBlendMode}}
 
{{i18n|love.graphics.getBlendMode}}

Latest revision as of 09:08, 31 December 2019

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

Gets the blending mode.

Function

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

Synopsis

mode, alphamode = love.graphics.getBlendMode( )

Arguments

None.

Returns

BlendMode mode
The current blend mode.
BlendAlphaMode alphamode
The current blend alpha mode – it determines how the alpha of drawn objects affects blending.

Function

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

Synopsis

mode = love.graphics.getBlendMode( )

Arguments

None.

Returns

BlendMode mode
The current blend mode.

See Also


Other Languages