Showing posts with label Unity3D. Show all posts
Showing posts with label Unity3D. Show all posts

Sunday, 21 April 2019

Unity Hyper Casual Game - Cubie By FastSolution


Learn To Create A Multiplayer Shooter Using Photon2 in Unity (2019)


---------------------------------------------

Hyper Casual Game - Cubie Project


Watch Complete Video Tutorials On Youtube Channel


Download Project : 9.0 mb


How to develop jumping hyper casual game in #unity.

Download Apk
https://play.google.com/store/apps/details?
id=codematics.cubie.jumping.game
What are #Hyper #casual #games ?

Crushing Hyper Casual Games,  you'll learn the step-by-step system used to create a massive game business based on building simple graphics and simple game play to provide best user experience and achieve success on play-store and App-store.

You will learn how to create a simple jumping game in unity in a series of video tutorials in English.

Part1 : Creating Hyper Casual Game - Getting Started
https://youtu.be/oXiAEroma-g

Part2 : Jump realistic And Fast in Unity
https://youtu.be/mzUpUw46lwM

Part3 : Adding dust particle on hitting ground
https://youtu.be/bk76sarg-hQ

Part4 : Generating random Tiles At Runtime

https://youtu.be/4drVpWDm1Y0

Sunday, 11 February 2018

Unity3D WhatsApp Group For Discussion

Join WhatsApp Group And share Your Question And Get Instant Help On Whatsapp
click on the link Below To join.

WhatsApp Group
https://chat.whatsapp.com/9qAQ373cPryFwgtvtl8b8q

YouTube
https://youtube.com/c/fastsolution

Friday, 20 October 2017

Unity AdMob (Google Mobile Ads ) Unity Plugin Integration


---- Watch Video Tutorials ----
Admob Integration Tutorial :
https://youtu.be/8wGXcEOYOig
-------------------------------
How To Fix AdMob Problem
https://youtu.be/JRGd7UG-WdE
------------------------------

using UnityEngine;
using System.Collections;
using GoogleMobileAds.Api;
using System;
 
public class AdManager : MonoBehaviour
{
 
    //THE SCRIPT HAS ORIGNAL ID'S OF ADMOB
    InterstitialAd interstitial;
    BannerView bannerView;
    // Use this for initialization
    void Start()
    {
 
        RequestBanner();
        RequestInterstitial();
    }
 
 
    public void RequestBanner()
    {
   // replace this id with your orignal admob id for banner ad
        string adUnitId = "ca-app-pub-3940256099942544/6300978111";
 
        // Create a 320x50 banner at the top of the screen.
        bannerView = new BannerView(adUnitId, AdSize.Banner, AdPosition.Bottom);
        // Create an empty ad request.
        AdRequest request = new AdRequest.Builder().Build();
        // Load the banner with the request.
        bannerView.LoadAd(request);
        bannerView.OnAdLoaded += HandleOnAdLoaded;
 
    }
 
    void HandleOnAdLoaded(object a, EventArgs args)
    {
        print("loaded");
        bannerView.Show();
    }
 
 
    public void RequestInterstitial()
    {
 
        string adUnitId = "your interstial ad id here";
 
 
        // Initialize an InterstitialAd.
        interstitial = new InterstitialAd(adUnitId);
        // Create an empty ad request.
        AdRequest request = new AdRequest.Builder().Build();
        // Load the interstitial with the request.
        interstitial.LoadAd(request);
 
 
    }
 
    public void show()
    {
        if (interstitial.IsLoaded())
        {
            interstitial.Show();
        }
    }
 
 
}

Friday, 13 October 2017

Unity Universal Share Link Button Code for Android And IOS

Watch Video On YouTube


using UnityEngine;
using System.Collections;
using System.IO;
using System.Runtime.InteropServices;
 
 
public class ShareAndRate : MonoBehaviour {
 
 string subject = "Aim n Shoot";
 string body = "https://play.google.com/store/apps/details?id=com.webroid.smashy.cat.kitty";
 
 #if UNITY_IPHONE
 
 [DllImport("__Internal")]
 private static extern void sampleMethod (string iosPath, string message);
 
 [DllImport("__Internal")]
 private static extern void sampleTextMethod (string message);
 
 #endif
 
 public void OnAndroidTextSharingClick()
 {
  
  StartCoroutine(ShareAndroidText());
  
 }
 IEnumerator ShareAndroidText()
 {
  yield return new WaitForEndOfFrame();
  //execute the below lines if being run on a Android device
  #if UNITY_ANDROID
  //Reference of AndroidJavaClass class for intent
  AndroidJavaClass intentClass = new AndroidJavaClass ("android.content.Intent");
  //Reference of AndroidJavaObject class for intent
  AndroidJavaObject intentObject = new AndroidJavaObject ("android.content.Intent");
  //call setAction method of the Intent object created
  intentObject.Call<AndroidJavaObject>("setAction", intentClass.GetStatic<string>("ACTION_SEND"));
  //set the type of sharing that is happening
  intentObject.Call<AndroidJavaObject>("setType""text/plain");
  //add data to be passed to the other activity i.e., the data to be sent
  intentObject.Call<AndroidJavaObject>("putExtra", intentClass.GetStatic<string>("EXTRA_SUBJECT"), subject);
  //intentObject.Call<AndroidJavaObject>("putExtra", intentClass.GetStatic<string>("EXTRA_TITLE"), "Text Sharing ");
  intentObject.Call<AndroidJavaObject>("putExtra", intentClass.GetStatic<string>("EXTRA_TEXT"), body);
  //get the current activity
  AndroidJavaClass unity = new AndroidJavaClass ("com.unity3d.player.UnityPlayer");
  AndroidJavaObject currentActivity = unity.GetStatic<AndroidJavaObject>("currentActivity");
  //start the activity by sending the intent data
  AndroidJavaObject jChooser = intentClass.CallStatic<AndroidJavaObject>("createChooser", intentObject, "Share Via");
  currentActivity.Call("startActivity", jChooser);
  #endif
 }
 
 
 public void OniOSTextSharingClick()
 {
  
  #if UNITY_IPHONE || UNITY_IPAD
  string shareMessage = "Wow I Just Share Text ";
  sampleTextMethod (shareMessage);
  
  #endif
 }
 
 public void RateUs()
 {
  #if UNITY_ANDROID
  Application.OpenURL("market://details?id=YOUR_ID");
  #elif UNITY_IPHONE
  Application.OpenURL("itms-apps://itunes.apple.com/app/idYOUR_ID");
  #endif
 }
 
}

Sunday, 30 April 2017

Unity3D Tutorial in Urdu / Hindi [14]

Tutorial No. 14


Welcome to unity 3_D video tutorial series in Urdu .

(1) Duration Of Course : 90 MINUTES
(2)Level : Beginners
(3)Total videos :14

These tutorials are created with Unity personnel edition V 5.3.5



Unity3D Tutorial in Urdu / Hindi [13]

Tutorial No. 13


Welcome to unity 3_D video tutorial series in Urdu .

(1) Duration Of Course : 90 MINUTES
(2)Level : Beginners
(3)Total videos :14

These tutorials are created with Unity personnel edition V 5.3.5



Unity3D Tutorial in Urdu / Hindi [12]

Tutorial No. 12


Welcome to unity 3_D video tutorial series in Urdu .

(1) Duration Of Course : 90 MINUTES
(2)Level : Beginners
(3)Total videos :14

These tutorials are created with Unity personnel edition V 5.3.5



Unity3D Tutorial in Urdu / Hindi [11]

Tutorial No. 11


Welcome to unity 3_D video tutorial series in Urdu .

(1) Duration Of Course : 90 MINUTES
(2)Level : Beginners
(3)Total videos :14

These tutorials are created with Unity personnel edition V 5.3.5



Unity3D Tutorial in Urdu / Hindi [10]

Tutorial No. 10


Welcome to unity 3_D video tutorial series in Urdu .

(1) Duration Of Course : 90 MINUTES
(2)Level : Beginners
(3)Total videos :14

These tutorials are created with Unity personnel edition V 5.3.5



Unity3D Tutorial in Urdu / Hindi [09]

Tutorial No. 9


Welcome to unity 3_D video tutorial series in Urdu .

(1) Duration Of Course : 90 MINUTES
(2)Level : Beginners
(3)Total videos :14

These tutorials are created with Unity personnel edition V 5.3.5



Unity3D Tutorial in Urdu / Hindi [08]

Tutorial No. 8


Welcome to unity 3_D video tutorial series in Urdu .

(1) Duration Of Course : 90 MINUTES
(2)Level : Beginners
(3)Total videos :14

These tutorials are created with Unity personnel edition V 5.3.5



Unity3D Tutorial in Urdu / Hindi [07]

Tutorial No. 7


Welcome to unity 3_D video tutorial series in Urdu .

(1) Duration Of Course : 90 MINUTES
(2)Level : Beginners
(3)Total videos :14

These tutorials are created with Unity personnel edition V 5.3.5



Unity3D Tutorial in Urdu / Hindi [06]

Tutorial No. 6


Welcome to unity 3_D video tutorial series in Urdu .

(1) Duration Of Course : 90 MINUTES
(2)Level : Beginners
(3)Total videos :14

These tutorials are created with Unity personnel edition V 5.3.5



Unity3D Tutorial in Urdu / Hindi [05]

Tutorial No. 5


Welcome to unity 3_D video tutorial series in Urdu .

(1) Duration Of Course : 90 MINUTES
(2)Level : Beginners
(3)Total videos :14

These tutorials are created with Unity personnel edition V 5.3.5.

Unity Tutorial in Urdu / Hindi [04]

Tutorial No.4

Welcome to unity 3_D video tutorial series in Urdu .

(1) Duration Of Course : 90 MINUTES
(2)Level : Beginners
(3)Total videos :14
these tutorials are created with Unity3d personel edition V 5.3.5

Unity Beginners tutorial in Urdu [03]

Tutorial No 3


Welcome to unity 3_D video tutorial series in Urdu .

(1) Duration Of Course : 90 MINUTES
(2)Level : Beginners
(3)Total videos :14

these tutorials are created with Unity 3d personnel edition V 5.3.5.






Unity3d Tutorials In Hindi -Urdu [ 02 ]


TUTORIAL NO. 2

Unity3d Tutorials in Urd / Hindi

01 

TUTORIAL NO 1.

Course Introduction

(1) Duration Of Course : 90 MINUTES
(2)Level : Beginners
(3)Total videos :14
these tutorials are created with Unity personnel edition V 5.3.5

REQUIREMENTS:
Basic Programming Skills of Any Object Oriented Language are Required to take this course .This is a very simple course and all the steps are Explained .

Recommendations:
Watch this Course in HD quality.
Go step by Step and follow each step on your computer.
In case of any Questions Write in Comments.


Introduction - Game Development Course in Urdu

Welcome to unity 3_D video tutorial series in Urdu .

Course Introduction

(1) Duration Of Course : 90 MINUTES
(2)Level : Beginners
(3)Total videos :14
these tutorials are created with Unity personnel edition V 5.3.5

REQUIREMENTS:
Basic Programming Skills of Any Object Oriented Language are Required to take this course .This is a very simple course and all the steps are Explained .

Recommendations:
Watch this Course in HD quality.
Go step by Step and follow each step on your computer.
In case of any Questions Write in Comments.