Top Quality Products

Soccer Mini 3D – (Unity – Admob)

$14.00

Added to wishlistRemoved from wishlist 0
Add to compare

3 sales

Categories: , Tags: , , , , , ,

Soccer Mini 3D – (Unity – Admob)

Soccer Mini 3D – (Unity – Admob) Review

Introduction

I’m excited to share my review of the Soccer Mini 3D game bundle, which includes a Unity project with Admob integration. As a developer, I was impressed with the simplicity and flexibility of this game, making it an excellent choice for those looking to create a casual, engaging experience.

Features

The game boasts a range of attractive features that set it apart from other soccer games in the market.

  • Easy control: The game is designed for simplicity, making it easy for players to control the ball and navigate the pitch.
  • Colorful graphics: The game features vibrant, colorful graphics that bring the game to life.
  • Smooth animations: The animations are smooth and delicate, creating an immersive experience for players.
  • Daily reward system: The game includes a daily reward system, encouraging players to come back for more.

Key Features

The game’s key features are just as impressive, including:

  • Multi-platform support: The game can be built and deployed on Android, iOS, and HTML5 (WebGL) platforms.
  • Easy customization: The game’s graphics can be easily customized, making it simple to create unique versions.
  • Admob integration: The game includes Admob integration, making it easy to monetize the game.
  • Universal compatibility: The game is designed to work on both phones and tablets.

Documentation

One of the things that impressed me most about this game bundle is the comprehensive documentation included. The documentation provides step-by-step instructions on how to open the project in Unity, change the package name, and modify the graphics and Admob settings.

Conclusion

Overall, I’m highly impressed with the Soccer Mini 3D game bundle. The game is well-designed, easy to use, and includes a range of attractive features that make it an excellent choice for casual gamers. The documentation is comprehensive, making it easy for developers to get started and customize the game to their needs.

Score: 9.5/10

I highly recommend this game bundle to anyone looking to create a casual, engaging soccer game. The only reason I didn’t give it a perfect score is that there’s always room for improvement, and some minor tweaks could be made to the game’s design and UI.

Download the Game

You can download the game bundle and try it out for yourself. Make sure to check out the gameplay video and APK demo to get a better feel for the game.

More Games

The game bundle also includes links to other games in the series, which you can try out as well. Each game has its unique features and gameplay, so you’re sure to find something that suits your taste.

User Reviews

0.0 out of 5
0
0
0
0
0
Write a review

There are no reviews yet.

Be the first to review “Soccer Mini 3D – (Unity – Admob)”

Your email address will not be published. Required fields are marked *

Introduction

The Soccer Mini 3D is a Unity-based game that allows users to play a simplified version of soccer. In this tutorial, we will be focusing on how to use the Soccer Mini 3D game in Unity with AdMob, a popular mobile ad platform. We will be covering the steps to integrate AdMob into your Unity project, as well as how to set up the game to display ads. By the end of this tutorial, you will have a fully functional Soccer Mini 3D game with AdMob integration.

Prerequisites

Before we begin, make sure you have the following:

  • Unity Hub installed on your computer
  • Unity 2019.4 or later installed
  • A basic understanding of Unity and C#
  • AdMob account set up (you can create one for free)
  • Soccer Mini 3D game assets downloaded and imported into your Unity project

Step 1: Setting up AdMob in Unity

  1. Open your Unity project and navigate to the Assets folder.
  2. Right-click inside the Assets folder and select Import Package > Custom Package.
  3. Select the AdMob Unity Plugin package you downloaded from the AdMob website.
  4. Click Import to import the package into your Unity project.
  5. In the Unity editor, navigate to Window > AdMob.
  6. Fill in your AdMob app ID and AdMob API key in the AdMob Settings window.
  7. Set the Ad Type to Banner and Ad Placement to Top.
  8. Click Apply to save the changes.

Step 2: Adding AdMob to the Soccer Mini 3D Game

  1. Open the SoccerMini3D scene in the Unity editor.
  2. Create a new UI canvas by going to GameObject > UI > Canvas.
  3. Name the canvas AdCanvas and set its Render Mode to Screen Space - Overlay.
  4. Create a new UI button by going to GameObject > UI > Button.
  5. Name the button AdButton and set its Text to Ad.
  6. Drag and drop the AdButton onto the AdCanvas.
  7. In the Inspector, set the AdButton's onClick event to Admob.ShowBanner().
  8. Create a new UI image by going to GameObject > UI > Image.
  9. Name the image AdImage and set its Source Image to Admob.GetBanner().
  10. Drag and drop the AdImage onto the AdCanvas.

Step 3: Implementing AdMob in the Soccer Mini 3D Game

  1. Open the SoccerMini3D.cs script and add the following code:
    
    using UnityEngine;
    using UnityEngine.UI;
    using Google.MobileAds;

public class SoccerMini3D : MonoBehaviour { private BannerView bannerView;

void Start()
{
    // Initialize AdMob
    MobileAds.Initialize(initStatus => {
        // Load the banner ad
        LoadBannerAd();
    });
}

void LoadBannerAd()
{
    // Create a banner view
    bannerView = new BannerView("your_ad_unit_id", AdSize.SmartBanner, AdPosition.Top);
    // Load the banner ad
    bannerView.LoadAd(new AdRequest.Builder().Build());
}

void Update()
{
    // Check if the banner ad is loaded
    if (bannerView.IsLoaded())
    {
        // Show the banner ad
        bannerView.Show();
    }
}

}


Replace `your_ad_unit_id` with your actual AdMob ad unit ID.

**Step 4: Testing the AdMob Integration**

1. Build and run the Soccer Mini 3D game on a physical device or emulator.
2. Start the game and wait for the banner ad to load.
3. The banner ad should appear at the top of the screen.
4. Click on the banner ad to test if it opens the AdMob ad successfully.

**Conclusion**

That's it! You have successfully integrated AdMob into your Soccer Mini 3D game using Unity. With this integration, you can monetize your game and earn revenue from ad impressions. Remember to replace the `your_ad_unit_id` placeholder with your actual AdMob ad unit ID.

Here is a complete settings example for configuring Soccer Mini 3D - (Unity - Admob):

Admob Settings

In the Admob dashboard, create a new ad unit for your app. For this example, we will use a banner ad.

  • Ad format: Banner
  • Ad size: 320x50
  • Ad placement: Top
  • Ad type: Rewarded

Admob Plugin Settings

In your Unity project, go to the Admob plugin settings.

  • App ID: Your Admob app ID
  • Ad Unit ID: Your Admob ad unit ID
  • Interstitial Ad Unit ID: Your Admob interstitial ad unit ID
  • Rewarded Ad Unit ID: Your Admob rewarded ad unit ID

Admob Banner Settings

In your Unity scene, add a new UI canvas and create a new UI image game object.

  • UI Image: Banner
  • Width: 320
  • Height: 50
  • Position: Top
  • Anchor: Top Left

Admob Interstitial Settings

In your Unity scene, add a new UI canvas and create a new UI button game object.

  • UI Button: Interstitial
  • Text: Show Interstitial
  • Position: Bottom
  • Anchor: Bottom Left

Admob Rewarded Settings

In your Unity scene, add a new UI canvas and create a new UI button game object.

  • UI Button: Rewarded
  • Text: Watch Video
  • Position: Bottom
  • Anchor: Bottom Left

Admob Load Settings

In your Unity script, add the following code to load the ads.

  • Admob.LoadAd(Admob.BannerAd);
  • Admob.LoadAd(Admob.InterstitialAd);
  • Admob.LoadAd(Admob.RewardedAd);

Admob Show Settings

In your Unity script, add the following code to show the ads.

  • Admob.ShowAd(Admob.BannerAd);
  • Admob.ShowAd(Admob.InterstitialAd);
  • Admob.ShowAd(Admob.RewardedAd);

Admob Listener Settings

In your Unity script, add the following code to listen for ad events.

  • Admob.OnAdLoaded += Admob_OnAdLoaded;
  • Admob.OnAdFailedToLoad += Admob_OnAdFailedToLoad;
  • Admob.OnAdOpened += Admob_OnAdOpened;
  • Admob.OnAdClosed += Admob_OnAdClosed;
  • Admob.OnRewarded += Admob_OnRewarded;

Here are the features of Soccer Mini 3D - (Unity - Admob) extracted from the provided content:

  1. Popular Casual game: Soccer Mini 3D is a popular casual game with simple rules and easy controls.
  2. Simple rules and Easy control: The game has simple rules and easy controls, making it accessible to a wide range of players.
  3. Various designs and colorful graphics: The game features various designs and colorful graphics, making it visually appealing.
  4. Smooth and delicate animations: The game has smooth and delicate animations, adding to its overall visual appeal.
  5. Daily reward system: The game includes a daily reward system, encouraging players to play daily.
  6. Supported platforms for build: The game can be built on Android, iOS, and HTML5 (WebGL) platforms.
  7. Easy to customize displayed graphs: The game allows for easy customization of displayed graphs.
  8. Easy to edit and reskin: The game can be easily edited and reskinned to fit a specific theme or style.
  9. Optimized for Mobile: The game is optimized for mobile devices, providing a seamless experience.
  10. ADMOB INTEGRATED EASY: The game has Admob integrated, making it easy to display ads and monetize the game.
  11. Universal (phone & tablet): The game can be played on both phone and tablet devices.
  12. Full documentation: The game comes with full documentation, making it easy to understand and customize.
  13. Open Project In Unity 2022.3.xxxf: The game can be opened in Unity 2022.3.xxxf, the latest LTS version in Unity Hub.
  14. Change the package name: The game allows users to change the package name.
  15. How to Change Graphics game: The game comes with documentation on how to change graphics.
  16. How to change the Admob Banner and Interstitial ID: The game allows users to change the Admob Banner and Interstitial ID.
  17. How to added the Admob Rewarded Ads: The game comes with documentation on how to add Admob Rewarded Ads.
  18. How to added the IAP Remove Ads: The game comes with documentation on how to add IAP Remove Ads.
Soccer Mini 3D – (Unity – Admob)
Soccer Mini 3D – (Unity – Admob)

$14.00

Shop.Vyeron.com
Logo
Compare items
  • Total (0)
Compare
0