Difference between revisions of "FBInstant.context.isSizeBetween"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(2 intermediate revisions by 2 users not shown)
Line 7: Line 7:
 
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.<br />
 
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.<br />
 
<br /></translate>
 
<br /></translate>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(table) = FBInstant.context.isSizeBetween(minSize,maxSize)
 
(table) = FBInstant.context.isSizeBetween(minSize,maxSize)
</source>
+
</syntaxhighlight>
 
=== <translate>Parameters</translate> ===
 
=== <translate>Parameters</translate> ===
 
'''minSize''': (number) <translate>The minimum bound of the context size query.</translate> <br/>
 
'''minSize''': (number) <translate>The minimum bound of the context size query.</translate> <br/>
Line 17: Line 17:
 
=== <translate>Examples</translate> ===
 
=== <translate>Examples</translate> ===
 
'''Example'''<br/>
 
'''Example'''<br/>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
result=FBInstant.context.isSizeBetween(3,5)
 
result=FBInstant.context.isSizeBetween(3,5)
 
if result then
 
if result then
Line 23: Line 23:
 
print("MinSize",result.minSize)
 
print("MinSize",result.minSize)
 
print("MaxSize",result.maxSize)
 
print("MaxSize",result.maxSize)
<br/></source>
+
<br/></syntaxhighlight>
 +
 
 +
{{FBInstant.context}}

Latest revision as of 15:27, 13 July 2023


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/>