KO
|
EN
gitlite โ search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
advertising-unity
โ 9
Open GitHub โ
Support advertising unity
Download README (.md)
Explore Similar Repositories
prompt-eng-master
:
No description available.
E-Commerce_Service_DataBase
:
designing an online shop using postgreSql and Python
OpenTEA101
:
๐ Data Science Experiment Handbook: ไธไธช่ดๅไบๆทฑๅ ฅๆข็ดขๅๅไบซๅฆไฝ่ฏๅซGitHubๅผๅธธ่ดฆๆท็ๆฐๆฎ็งๅญฆๅฎ้ชๆๅใๆฌไปๅบๅ ๆฌไปๆฐๆฎ่ทๅใ้ขๅค็ใ็นๅพๅทฅ็จๅฐๆจกๅๆๅปบไธ่ฏไผฐ็ๅฎๆดๆต็จใๆฌข่ฟๅไฝๆฐๆฎ็งๅญฆ็ฑๅฅฝ่ ใ็ ็ฉถ่ ๅๅผๅ่ ๅ ฑๅๅไธไธ่ดก็ฎ!
nginx-rust
:
Nginx API bindings for Rust.
mevsharp
:
A MEV proxy written in C#
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
advertising-unity
?
Download (.md)
<p align="left"> <a> <img alt="Made With Unity" src="https://img.shields.io/badge/made%20with-Unity-57b9d3.svg?logo=Unity"> </a> <a> <img alt="License" src="https://img.shields.io/github/license/unity-package/advertising-unity?logo=github"> </a> <a> <img alt="Last Commit" src="https://img.shields.io/github/last-commit/unity-package/advertising-unity?logo=Mapbox&color=orange"> </a> <a> <img alt="Repo Size" src="https://img.shields.io/github/repo-size/unity-package/advertising-unity?logo=VirtualBox"> </a> <a> <img alt="Last Release" src="https://img.shields.io/github/v/release/unity-package/advertising-unity?include_prereleases&logo=Dropbox&color=yellow"> </a> </p> ## What ### Show ads tool for unity games (support for Max-Applovin, Google Mobile Ads and IronSource-UnityLevelPlay) ## How To Install ### Add the line below to `Packages/manifest.json` for version `1.1.9` ```json "com.wolf-org.advertising":"https://github.com/unity-package/advertising-unity.git#1.1.9", ``` dependency `extensions-unity-1.0.6` ```json "com.wolf-org.extensions":"https://github.com/unity-package/extensions-unity.git#1.0.6", ``` Install `app-tracking-unity` and add define symbol `VIRTUESKY_TRACKING` if you need ad revenue tracking ```json "com.wolf-org.tracking":"https://github.com/unity-package/app-tracking-unity.git#1.0.6", ``` ## Use - Use via MenuItem `Unity-Common` > `AdSettings` or shortcut `Ctrl + E / Command + E` to open `AdSettings`  - Here, select `Ad Network` and enter the ad unit id you want to use, don't forget add `Define Symbol`. - Add `Scripting Define Symbols` in `Project Settings` > `Player` > `Other Settings` - Applovin: `VIRTUESKY_ADS` and `VIRTUESKY_APPLOVIN` - Admob: `VIRTUESKY_ADS` and `VIRTUESKY_ADMOB` - IronSource: `VIRTUESKY_ADS` and `VIRTUESKY_LEVELPLAY` - If you use `Runtime auto init`, `Advertising` will be created automatically when you load the scene. Conversely, you would attach `Advertising` to the GameObject in the scene so that the ads can be loaded  - Demo API Show Ads ```csharp public void ShowBanner() { Advertising.BannerAd.Show(); } public void HideBanner() { Advertising.BannerAd.HideBanner(); } public void ShowInter() { Advertising.InterstitialAd.Show().OnCompleted(() => { // handle show inter completed }); } public void ShowReward() { Advertising.RewardAd.Show().OnCompleted(() => { // handle show reward completed }).OnSkipped(() => { // handle skip reward }); } public void ShowRewardInter() { Advertising.RewardedInterstitialAd.Show().OnCompleted(() => { }); } public void ShowAppOpen() { Advertising.AppOpenAd.Show(); } ```