Difference between revisions of "FBInstant.getEntryPointData"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2018.3<br/> === Description === <br /> Returns any data object associated with the entry point that the game was launched from. The c...")
 
Line 8: Line 8:
 
<br />
 
<br />
 
<source lang="lua">
 
<source lang="lua">
(table), = FBInstant.getEntryPointData()
+
(table) = FBInstant.getEntryPointData()
 
</source>
 
</source>
 
'''Returns''' (table) Data associated with the current entry point.<br/>
 
'''Returns''' (table) Data associated with the current entry point.<br/>

Revision as of 11:21, 23 August 2018

Available since: Gideros 2018.3

Description


Returns any data object associated with the entry point that the game was launched from.

The contents of the object are developer-defined, and can occur from entry points on different platforms. This will return null for older mobile clients, as well as when there is no data associated with the particular entry point.

(table) = FBInstant.getEntryPointData()

Returns (table) Data associated with the current entry point.