खोज…


परिचय

यह विषय तृतीय-पक्ष विज्ञापन सेवाओं के एकीकरण के बारे में है, जैसे कि एकता विज्ञापन या Google AdMob, एक एकता परियोजना में।

टिप्पणियों

यह एकता विज्ञापनों पर लागू होता है।

सुनिश्चित करें कि एकता विज्ञापन के लिए टेस्ट मोड विकास के दौरान सक्षम है

आप, डेवलपर के रूप में, अपने खुद के गेम के विज्ञापनों पर क्लिक करके इंप्रेशन या इंस्‍टॉल जेनरेट नहीं कर सकते हैं। ऐसा करने से एकता विज्ञापन सेवा की शर्तों का उल्लंघन होता है, और आपको धोखाधड़ी के प्रयास के लिए एकता विज्ञापन नेटवर्क से प्रतिबंधित कर दिया जाएगा।

अधिक जानकारी के लिए, एकता विज्ञापन सेवा की शर्तें पढ़ें।

C # में एकता विज्ञापन मूल बातें

using UnityEngine;
using UnityEngine.Advertisements;

public class Example : MonoBehaviour
{
    #if !UNITY_ADS // If the Ads service is not enabled
    public string gameId; // Set this value from the inspector
    public bool enableTestMode = true; // Enable this during development
    #endif

    void InitializeAds () // Example of how to initialize the Unity Ads service
    {
        #if !UNITY_ADS // If the Ads service is not enabled
        if (Advertisement.isSupported) { // If runtime platform is supported
            Advertisement.Initialize(gameId, enableTestMode); // Initialize
        }
        #endif
    }
    
    void ShowAd () // Example of how to show an ad
    {
        if (Advertisement.isInitialized || Advertisement.IsReady()) { // If the ads are ready to be shown
            Advertisement.Show(); // Show the default ad placement
        }
    }
}

एकता विज्ञापन मूल बातें जावास्क्रिप्ट में

#pragma strict
import UnityEngine.Advertisements;

#if !UNITY_ADS // If the Ads service is not enabled
public var gameId : String; // Set this value from the inspector
public var enableTestMode : boolean = true; // Enable this during development
#endif

function InitializeAds () // Example of how to initialize the Unity Ads service
{
    #if !UNITY_ADS // If the Ads service is not enabled
    if (Advertisement.isSupported) { // If runtime platform is supported
        Advertisement.Initialize(gameId, enableTestMode); // Initialize
    }
    #endif
}

function ShowAd () // Example of how to show an ad
{
    if (Advertisement.isInitialized && Advertisement.IsReady()) { // If the ads are ready to be shown
        Advertisement.Show(); // Show the default ad placement
    }
}


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow