Difference between revisions of "FBInstant.context.isSizeBetween"

From GiderosMobile
Line 24: Line 24:
 
print("MaxSize",result.maxSize)
 
print("MaxSize",result.maxSize)
 
<br/></source>
 
<br/></source>
 +
 +
{{FBInstant.context}}

Revision as of 18:37, 25 March 2020


Available since: Gideros 2018.3
Class: Context

Description


This function determines whether the number of participants in the current game context is between a given minimum and maximum, inclusive. If one of the bounds is null only the other bound will be checked against. It will always return the original result for the first call made in a context in a given game play session. Subsequent calls, regardless of arguments, will return the answer to the original query until a context change occurs and the query result is reset.

(table) = FBInstant.context.isSizeBetween(minSize,maxSize)

Parameters

minSize: (number) The minimum bound of the context size query.
maxSize: (number) The maximum bound of the context size query.

Return values

Returns (table) Table containing answers to the query.

Examples

Example

result=FBInstant.context.isSizeBetween(3,5)
if result then
	print("Answer",result.answer)
	print("MinSize",result.minSize)
	print("MaxSize",result.maxSize)
<br/>