Difference between revisions of "Screen:clear"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2017.8<br/>
 
'''Available since:''' Gideros 2017.8<br/>
 +
'''Class:''' [[Screen]]<br/>
 +
 
=== Description ===
 
=== Description ===
<translate>Sets this screen's background to the provided color and opacity</translate>
+
Sets the screen background to the provided color and opacity.
<source lang="lua">
+
<syntaxhighlight lang="lua">
Screen:clear(color,alpha)
+
Screen:clear(color,alpha)
</source>
+
</syntaxhighlight>
 +
 
 
=== Parameters ===
 
=== Parameters ===
'''color''': (number) <translate>background color</translate> <br/>
+
'''color''': (number) background color<br/>
'''alpha''': (number) <translate>background transparency</translate> <br/>
+
'''alpha''': (number) background transparency<br/>
 +
 
 +
{{Screen}}

Latest revision as of 15:31, 13 July 2023

Available since: Gideros 2017.8
Class: Screen

Description

Sets the screen background to the provided color and opacity.

Screen:clear(color,alpha)

Parameters

color: (number) background color
alpha: (number) background transparency