Type Function Return value Boolean Revision 2017.3060 Keywords ads, advertising, Supersonic, isLoaded See also supersonic.show() supersonic.load() supersonic.*
Checks whether an ad is already loaded. Returns true
if an ad is loaded/ready, otherwise returns false
.
supersonic.isLoaded( adUnitType )
String. The type of ad you wish to check is loaded. Supported values are "offerWall"
, "interstitial"
, or "rewardedVideo"
.
local supersonic = require( "plugin.supersonic" ) local function adListener( event ) if ( event.phase == "init" ) then -- Successful initialization -- Load an offer wall ad supersonic.load( "offerWall", "user2353" ) elseif ( event.phase == "failed" ) then -- The ad failed to load print( event.type ) print( event.isError ) print( event.response ) end end -- Initialize the Supersonic plugin supersonic.init( adListener, { appKey="YOUR_APP_KEY" } ) -- Sometime later, check if the ad is loaded local isAdLoaded = supersonic.isLoaded( "offerWall" ) print( isAdLoaded )