Top Quality Products

Kids Puzzle Drag and Drop UNITY + Admob + EASY RESKIN ( Jigsaw for kids )

$25.00

Added to wishlistRemoved from wishlist 0
Add to compare

9 sales

LIVE PREVIEW

Kids Puzzle Drag and Drop UNITY + Admob + EASY RESKIN ( Jigsaw for kids )

Kids Puzzle Drag and Drop UNITY + Admob + EASY RESKIN (Jigsaw for kids) Review

I am thrilled to share my thoughts on this amazing Unity-based puzzle game, designed specifically for kids. Before we dive into the details, I want to highlight that this game is suitable for developers who are looking for a fun and easy-to-reskin puzzle game to target kids on their playstore.

Overview
The game is called Kids Puzzle Drag and Drop UNITY + Admob + EASY RESKIN, and it’s a jigsaw puzzle game for kids. The game has 2×2 puzzle images that need to be solved using a simple drag-and-drop mechanism. The game is designed to be easy to reskin and requires minimal setup configurations. Admob banner and interstisial ads are also integrated to help generate revenue.

Features
Some of the key features of this game include:

  1. Easy Reskin: The game comes with easy reskin capabilities, making it simple for developers to customize the game to their liking.
  2. Admob Integration: Admob banner and interstisial ads are integrated, allowing developers to monetize their game easily.
  3. Full Documentation: The game comes with comprehensive documentation to help developers set up the game and reskin it as needed.
  4. Puzzle 2×2 Drag and Drop: The game features a 2×2 puzzle that needs to be solved using a simple drag-and-drop mechanism.
  5. UNITY 2017.4.20 LTS (ARMv64 Support Later): The game was built using Unity 2017.4.20 LTS, which ensures compatibility with newer SDKs and devices.
  6. API SDK 28 Support: The game is compatible with API SDK 28, making it suitable for developers who want to target newer devices.

System Requirements
To run the game, you will need:

  1. UNITY 2018.4.20: This version of Unity is required to run the game.
  2. JAVA SDK 8: The Java Development Kit (JDK) 8 is necessary to compile and run the game.
  3. ANDROID SDK: The Android SDK is required to compile and run the game.
  4. INTERNET CONNECTION: An internet connection is necessary to download the necessary files and resources.

Conclusion
Overall, I am impressed with this puzzle game, which offers an easy-to-reskin mechanism and Admob integration for monetization. The game is suitable for developers who want to create a fun and engaging puzzle game for kids. However, please note that the game is watermarked, and developers will need to replace the puzzle images with their own to avoid copyright issues.

Rating
I give this game a score of 0 out of 5, as it meets my expectations and offers great potential for developers who want to create a puzzle game for kids.

Recommendation
I highly recommend this game to developers who want to create a puzzle game for kids. However, please ensure that you read the disclaimer and understand the requirements before purchasing the assets.

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 “Kids Puzzle Drag and Drop UNITY + Admob + EASY RESKIN ( Jigsaw for kids )”

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

Introduction

Welcome to the tutorial on creating a popular kids' puzzle game called "Jigsaw for kids" using Unity, AdMob, and Easy Reskin. This game is designed for young children and is an excellent way to improve their problem-solving skills and cognitive abilities. With this tutorial, you'll learn how to create a complete game with a customizable interface, drag-and-drop functionality, and AdMob integration to monetize your game.

Prerequisites

Before starting this tutorial, you should have a basic understanding of Unity, C#, and the principles of game development. Make sure you have the following:

  • Unity Hub (download and install the Unity Editor)
  • A C# programming language knowledge (you can learn the basics here: https://docs.microsoft.com/en-us/dotnet/csharp/tutorials/)
  • Familiarity with Unity's interface and basic game development concepts
  • A computer with enough resources to run Unity smoothly

Tutorial Overview

This tutorial will cover the following topics:

  1. Setting up the game scene and creating the puzzle pieces
  2. Implementing the drag-and-drop functionality using Unity's built-in features
  3. Customizing the game interface with Easy Reskin
  4. Integrating AdMob for in-app ads and monetization
  5. Testing and publishing the game

Step 1: Setting up the game scene and creating the puzzle pieces

  1. Launch Unity and create a new 2D project. Set the resolution to 720x1280 and choose the "2D" template.
  2. Create a new scene by going to "File" > "New Scene" and then name it "JigsawForKids".
  3. Create a new folder named "PuzzlePieces" and inside it, create 5-6 separate sprite assets for the different puzzle pieces (e.g., shapes, animals, etc.).
  4. Create a new GameObject for the puzzle board by going to "GameObject" > "2D Object" > "Sprite" and name it "PuzzleBoard".
  5. Set the PuzzleBoard's sprite asset to a large, flat image (e.g., a jigsaw puzzle grid).
  6. Create 5-6 separate GameObjects for the puzzle pieces and set their sprite assets to the ones you created earlier.

Step 2: Implementing the drag-and-drop functionality using Unity's built-in features

  1. Create a new C# script by going to "Assets" > "Create" > "C# Script" and name it "DraggablePuzzlePiece".
  2. Attach the script to each puzzle piece GameObject.
  3. In the script, add the following code:
    
    using UnityEngine;

public class DraggablePuzzlePiece : MonoBehaviour { public float speed = 5.0f;

private bool isDragged = false;

void Update()
{
    if (isDragged)
    {
        transform.position = Input.mousePosition;
    }
}

void OnMouseDown()
{
    isDragged = true;
}

void OnMouseUp()
{
    isDragged = false;
}

}

4. Create a new C# script by going to "Assets" > "Create" > "C# Script" and name it "PuzzleBoardDragDetector".
5. Attach the script to the PuzzleBoard GameObject.
6. In the script, add the following code:
```csharp
using UnityEngine;

public class PuzzleBoardDragDetector : MonoBehaviour
{
    private DraggablePuzzlePiece[] puzzlePieces;

    void Start()
    {
        puzzlePieces = GameObject.FindObjectsOfType<DraggablePuzzlePiece>();
    }

    void OnMouseDown()
    {
        foreach (DraggablePuzzlePiece piece in puzzlePieces)
        {
            if (piece.isDragged)
            {
                piece.transform.position = RectTransformUtility.ScreenToLocalPoint(GetComponent<RectTransform>(), Input.mousePosition);
            }
        }
    }
}

Step 3: Customizing the game interface with Easy Reskin

  1. Create a new folder named "Resources" in your Unity project and create a new subfolder called "EasyReskin".
  2. Download the Easy Reskin assets (https://assetstore.unity.com/packages/templates-easyreskin-164511) and extract them to the "EasyReskin" folder.
  3. Drag and drop the "EasyReskin" folder into the Unity project window.

Step 4: Integrating AdMob for in-app ads and monetization

  1. Create a new folder named "AdMob" in your Unity project and create a new subfolder called "RewardedVideo".
  2. Download the AdMob SDK for Unity (https://developers.google.com/mobile-ads-sdk) and extract it to the "AdMob" folder.
  3. Import the AdMob SDK by going to "Assets" > "Import Package" > "Custom Package" and select the "AdMob-Unity-SDK.zip" file.
  4. In the AdMob SDK package, you'll find two scripts: "RewardedVideo.cs" and "Admob.cs". Drag and drop these scripts into the Unity project window.

Step 5: Testing and publishing the game

  1. Test your game by clicking the "Play" button in Unity or by running the game in the Unity Editor.
  2. Use the "Game" > "Build" > "Windows" (or "Android" if you're building for mobile) menu to build and export your game.
  3. Upload your game to the app stores (App Store, Google Play) and share it with your friends and family!

This concludes the tutorial on creating a popular kids' puzzle game using Unity, AdMob, and Easy Reskin. With these steps, you should now have a fully functional game with a customizable interface, drag-and-drop functionality, and AdMob integration. Remember to test and publish your game to share it with the world!

General Settings

In the Unity project, go to Edit > Project Settings > Player. In the Other Settings section, set the Resolution to 1024x768 and Default Is Full Screen to True.

Admob Settings

In the Unity project, go to Assets > GoogleMobileAds > AndroidManifest.xml and add the following code:

<manifest>
    <application>
        <meta-data android:name="com.google.android.gms.ads.APPLICATION_ID"
            android:value="YOUR_ADMOB_APP_ID" />
    </application>
</manifest>

Replace YOUR_ADMOB_APP_ID with your actual Admob app ID.

In the Unity project, go to Assets > GoogleMobileAds > GoogleMobileAds.unitypackage and import the package.

In the Unity project, go to Edit > Project Settings > Player and add the following code to the Other Settings section:

<meta-data android:name="com.google.android.gms.ads.APPLICATION_ID"
    android:value="YOUR_ADMOB_APP_ID" />

Replace YOUR_ADMOB_APP_ID with your actual Admob app ID.

Easy Reskin Settings

In the Unity project, go to Assets > Easy Reskin > ReskinSettings.asset and set the following values:

ReskinType: Puzzle
BackgroundImage: PuzzleBackground
PiecesImage: PuzzlePieces
BorderImage: PuzzleBorder
ShadowImage: PuzzleShadow

Replace PuzzleBackground, PuzzlePieces, PuzzleBorder, and PuzzleShadow with your actual image names.

Jigsaw Puzzle Settings

In the Unity project, go to Assets > Jigsaw Puzzle > JigsawPuzzleSettings.asset and set the following values:

PieceSize: 50
PieceGap: 10
BorderSize: 10
ShadowSize: 5

Replace 50, 10, 10, and 5 with your actual values.

Drag and Drop Settings

In the Unity project, go to Assets > Drag and Drop > DragAndDropSettings.asset and set the following values:

DraggableObjects: PuzzlePieces
DropZone: PuzzleBackground

Replace PuzzlePieces and PuzzleBackground with your actual object names.

Here are the featured mentioned about this Kids Puzzle Drag and Drop UNITY + Admob + EASY RESKIN ( Jigsaw for kids ) :

  1. Easy Reskin and Setup Configurations: allows for easy customizing of the game without deep knowledge of Unity.
  2. Admob Integration: with banner and interstisial ads, can help you earn more revenue.
  3. Full Documentation: includes guidance on how to reskin and set up the game, as well as downloading and setting up Unity.
  4. Puzzle Game: is a simple funny puzzle game with 2x2 puzzle images to solve, using cool drag and drop mechanics.
  5. Compatibility with Android SDK: compatible with latest Android SDK 28, and able to be set up for other SDKs.
  6. Easy to Create New Levels: allows easy addition of new levels for the puzzle game.
  7. Child-Friendly: suitable for kids to play on Google PlayStore.
  8. Runs on Multiple Devices: fully tested and playable on a variety of devices, from emulator to real phones and tablets.

All of these features, documentation, and setup information will help ensure that this template is used effectively for building a child-friendly jigsaw puzzle game.

Kids Puzzle Drag and Drop UNITY + Admob + EASY RESKIN ( Jigsaw for kids )
Kids Puzzle Drag and Drop UNITY + Admob + EASY RESKIN ( Jigsaw for kids )

$25.00

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