FBInstant.context.isSizeBetween
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.
<syntaxhighlight lang="lua">
(table) = FBInstant.context.isSizeBetween(minSize,maxSize)
</source>
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
<syntaxhighlight lang="lua">
result=FBInstant.context.isSizeBetween(3,5)
if result then
print("Answer",result.answer)
print("MinSize",result.minSize)
print("MaxSize",result.maxSize)
</source>