Difference between revisions of "RenderTarget:clear"

From GiderosMobile
(remove language stuff)
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(2 intermediate revisions by 2 users not shown)
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Clears rendered texture with provided color and opacity.
 
Clears rendered texture with provided color and opacity.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
RenderTarget:clear(color,alpha,x,y,width,height)
 
RenderTarget:clear(color,alpha,x,y,width,height)
</source>
+
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===
'''color''': (number) color using which to clear the texture<br/>
+
'''color''': (number) color used to clear the texture<br/>
'''alpha''': (number) transparency using which to clear the texture<br/>
+
'''alpha''': (number) transparency used to clear the texture<br/>
 
'''x''': (number) relative x coordinate '''optional'''<br/>
 
'''x''': (number) relative x coordinate '''optional'''<br/>
 
'''y''': (number) relative y coordinate '''optional'''<br/>
 
'''y''': (number) relative y coordinate '''optional'''<br/>
'''width''': (number) width of the area to clear starting from x coordinate '''optional'''<br/>
+
'''width''': (number) width of the area to clear, starting from x coordinate '''optional'''<br/>
'''height''': (number) height of the area to clear starting from y coordinate '''optional'''<br/>
+
'''height''': (number) height of the area to clear, starting from y coordinate '''optional'''<br/>
  
 
{{RenderTarget}}
 
{{RenderTarget}}

Latest revision as of 15:32, 13 July 2023

Available since: Gideros 2013.06
Class: RenderTarget

Description

Clears rendered texture with provided color and opacity.

RenderTarget:clear(color,alpha,x,y,width,height)

Parameters

color: (number) color used to clear the texture
alpha: (number) transparency used to clear the texture
x: (number) relative x coordinate optional
y: (number) relative y coordinate optional
width: (number) width of the area to clear, starting from x coordinate optional
height: (number) height of the area to clear, starting from y coordinate optional