Application:isPlayerMode

From GiderosMobile
Revision as of 09:36, 23 January 2025 by MoKaLux (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.

application:isPlayerMode()

Example

if not application:isPlayerMode() then
	-- do stuff that won't run on Gideros Player
end