Ads: Rewarded Video Ads

Download

Unity Cheat Sheet: #39

Why Monetization Matters

  • Sustainable Development: Fund ongoing updates
  • User Experience: Balance revenue vs enjoyment
  • Platform Rules: Stay compliant with stores
  • Revenue Growth: Optimize income streams
  • Player Retention: Keep players engaged

Unity Ads Initialization

  • Set platform-specific game IDs
  • Handle unsupported platforms gracefully
  • Enable test mode during development
  • Call Advertisement.Initialize() only once

Loading Rewarded Ads

  • Implement IUnityAdsLoadListener interface
  • Use Advertisement.Load() with the correct ad unit ID
  • Keep track of the loading state
  • Handle load callbacks properly

Ad Load Event Handling

  • Implement OnUnityAdsAdLoaded callback
  • Track successful ad loads
  • Implement OnUnityAdsFailedToLoad for errors
  • Log detailed errors for debugging

Displaying Rewarded Ads

  • Always check Advertisement.IsReady() first
  • Set up ShowOptions with callbacks
  • Use proper ad unit ID consistently
  • Only show ads at appropriate times

Reward Handling

  • Implement proper completion callbacks
  • Check for ShowResult.Finished status
  • Only grant rewards for complete views
  • Handle skipped and failed states correctly

Show More