Monday, 23 October 2017

Unity2D- Turning Player Left And Right



Unity 2D Player Character Controller 
(Creating Animations From Sprites) .

In This Tutorial We will Setup 2D character 
from scratch we will :
(1) Create Animations From Sprites.
(2)Finite state machine setup.
(3)study parameter in FSM.
(4)scripting FSM changing Animations.
(5)scripting basic character movements (run,jump etc.)
Tags:
Unity, 2d, player, character, controller, moving, sprites, animation, sprite sheet, 2d animation, game, 2d player, running, walking, hindi, urdu, fast solution,

Sunday, 22 October 2017

Unity 2D player Movement - Running and Turning (with Animations) [04]



#unity #simple #player #movement #walking #running #turning
Unity 2D player Movement - Running and Turning 
Making player transition between different animations as the player runs and move and turn left and right.

               S U B S C R I B E
============================
watch all videos in sequence
https://youtu.be/E5lsbDP2BFM
=============================

Unity 2D Player Character Controller (Creating Animations From Sprites) .

In This Tutorial We will Setup 2D character from scratch we will
(1) Create Animations From Sprites.
(2)Finite state machine setup.
(3)study parameter in FSM.
(4)scripting FSM changing Animations.
(5)scripting basic character movements (run,jump etc.)

Saturday, 21 October 2017

Unity 2D Character Controller (Scripting) 03






Unity 2D Player Character Controller (Creating Animations From Sprites) .

In This Tutorial We will Setup 2D character from scratch we will
(1) Create Animations From Sprites.
(2)Finite state machine setup.
(3)study parameter in FSM.
(4)scripting FSM changing Animations.
(5)scripting basic character movements (run,jump etc.)
Tags:
Unity, 2d, player, character, controller, moving, sprites, animation, sprite sheet, 2d animation, game, 2d player, running, walking, hindi, urdu, fast solution,

Friday, 20 October 2017

UNITY AdMob Problem Fixed Ads Not Showing ☑

Unity AdMob (Google Mobile Ads) Integration 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();
        }
    }
 
 
}

what are Layers In Unity