Difference between revisions of "FBInstant.getRewardedVideoAsync"
m (Text replacement - "<source" to "<syntaxhighlight") |
|||
Line 7: | Line 7: | ||
Attempt to create an instance of rewarded video. This instance can then be preloaded and presented.<br /> | Attempt to create an instance of rewarded video. This instance can then be preloaded and presented.<br /> | ||
<br /></translate> | <br /></translate> | ||
− | < | + | <syntaxhighlight lang="lua"> |
FBInstant.getRewardedVideoAsync(placementID,callback) | FBInstant.getRewardedVideoAsync(placementID,callback) | ||
</source> | </source> | ||
Line 15: | Line 15: | ||
=== <translate>Examples</translate> === | === <translate>Examples</translate> === | ||
'''Example'''<br/> | '''Example'''<br/> | ||
− | < | + | <syntaxhighlight lang="lua"> |
FBInstant.getRewardedVideoAsync("my_placement_ad", function(result,error) | FBInstant.getRewardedVideoAsync("my_placement_ad", function(result,error) | ||
print("getRewardedVideoAsync result:",result) | print("getRewardedVideoAsync result:",result) | ||
Line 21: | Line 21: | ||
<br/></source> | <br/></source> | ||
'''Example 2'''<br/> | '''Example 2'''<br/> | ||
− | < | + | <syntaxhighlight lang="lua"> |
FBInstant.getRewardedVideoAsync("my_placement_ad", function(result,error) | FBInstant.getRewardedVideoAsync("my_placement_ad", function(result,error) | ||
advert = result -- make a global of the result | advert = result -- make a global of the result |
Revision as of 14:26, 13 July 2023
Available since: Gideros 2018.3
Class: * Initialisation and Core
Description
Attempt to create an instance of rewarded video. This instance can then be preloaded and presented.
<syntaxhighlight lang="lua">
FBInstant.getRewardedVideoAsync(placementID,callback)
</source>
Parameters
placementID: (string) The placement ID that's been setup in your Audience Network settings.
callback: (function) A function that will be called with two arguments: Resolves with a #adinstance, or rejects with a #apierror if it couldn't be created. An error code if the function failed.
Examples
Example
<syntaxhighlight lang="lua">
FBInstant.getRewardedVideoAsync("my_placement_ad", function(result,error)
print("getRewardedVideoAsync result:",result)
end)
</source>
Example 2
<syntaxhighlight lang="lua">
FBInstant.getRewardedVideoAsync("my_placement_ad", function(result,error)
advert = result -- make a global of the result
advert:loadAsync( function () -- Preload the reward advert.
print("Advert loaded!")
advert:showAsync( function () -- show the reward advert.
print("Reward advert watched!")
end)
end)
end)
</source>
- FBInstant.canCreateShortcutAsync
- FBInstant.checkCanPlayerMatchAsync
- FBInstant.createShortcutAsync
- FBInstant.getEntryPointAsync
- FBInstant.getEntryPointData
- FBInstant.getInterstitialAdAsync
- FBInstant.getLeaderboardAsync
- FBInstant.getLocale
- FBInstant.getPlatform
- FBInstant.getRewardedVideoAsync
- FBInstant.getSDKVersion
- FBInstant.getSupportedAPIs
- FBInstant.logEvent
- FBInstant.matchPlayerAsync
- FBInstant.onPause
- FBInstant.quit
- FBInstant.setLoadingProgress
- FBInstant.setSessionData
- FBInstant.shareAsync
- FBInstant.startGameAsync
- FBInstant.switchGameAsync
- FBInstant.updateAsync