Difference between revisions of "Application:isPlayerMode"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
Returns true if app is ran on Gideros player and, false if it is ran as stand alone app.
 
Returns true if app is ran on Gideros player and, false if it is ran as stand alone app.
  
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
application:isPlayerMode()
 
application:isPlayerMode()
 
</source>
 
</source>
  
 
{{Application}}
 
{{Application}}

Revision as of 17:52, 12 July 2023

Available since: Gideros 2015.03.22
Class: Application

Description

Returns true if app is ran on Gideros player and, false if it is ran as stand alone app.

<syntaxhighlight lang="lua"> application:isPlayerMode() </source>