Showing posts with label urdu tech tutorials. Show all posts
Showing posts with label urdu tech tutorials. Show all posts

Friday, 13 October 2017

Unity 2D Camera Bounds

Watch Video Tutorial On Youtube


using UnityEngine;
using System.Collections;
 
public class CameraBounds : MonoBehaviour
{
 
    Vector3 screensize;
    public GameObject Right;
    public GameObject left;
    // Use this for initialization
 
 
    void Start()
    {
   screensize = Camera.main.ScreenToWorldPoint(new Vector3(Screen.width, Screen.height, 0));
 
    }
    // Update is called once per frame
    void Update()
    {
  screensize = Camera.main.ScreenToWorldPoint(new Vector3(Screen.width, Screen.height, 0));
  Right.transform.position = new Vector2(screensize.+ 0.65f0);
  left.transform.position = new Vector2((screensize.- 0.65f- 
   Camera.main.orthographicSize * Camera.main.aspect * 2f0);
    }
}

Tuesday, 2 May 2017

C++ Tutorials for Beginners (Hindi/Urdu) 08

C++ C++ Tutorial [08]

Watch Full course On Youtube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our Youtube Channel and subscribe ..Thanks.

#include<constream.h>
#include<iomanip.h>
void main(){
clrscr();
   
     // MANIPULATORS 
    char name[]="hel";
   
    cout<<name<<endl;
    cout<<setw(5)<<name<<endl;
    
    cout<<setprecision(2)<<22.777;
    
   
   
getch();
}

C++ Tutorials for Beginners (Hindi/Urdu) 07

C++ C++ Tutorial []

Watch Full course On Youtube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our Youtube Channel and subscribe ..Thanks.



Code:

#include
void main(){
clrscr();
   
     //ESCAPE SEQUENCE 
    
    cout<<"hellow \n world";
    cout<<"hellow \t world";
    cout<<"hellow \a world";
    cout<<"hellow \' world \'";
   
getch();
}


C++ Tutorials for Beginners (Hindi/Urdu) 06

C++ C++ Tutorial [06]

Watch Full course On Youtube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our Youtube Channel and subscribe ..Thanks.

C++ Tutorials for Beginners (Hindi/Urdu) 05

C++ C++ Tutorial []

Watch Full course On Youtube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our Youtube Channel and subscribe ..Thanks.

C++ Tutorials for Beginners (Hindi/Urdu) 04

C++ C++ Tutorial [04]

Watch Full course On Youtube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our Youtube Channel and subscribe ..Thanks.

C++ Tutorials for Beginners (Hindi/Urdu) 03

C++ Tutorial [03]

Watch Full course On Youtube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our Youtube Channel and subscribe ..Thanks.

C++ Tutorials for Beginners (Hindi/Urdu) 02

C++ Tutorial [02]

Watch Full course On Youtube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our Youtube Channel and subscribe ..Thanks.

C++ Tutorials for Beginners (Hindi/Urdu) 01

C++ Tutorials in Urdu [01]

Watch Full course On YouTube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our YouTube Channel and subscribe ..Thanks.



Source Code



boolStores  true or false.
charstores single character
intThe most natural size of integer for the machine.
floatA single-precision floating point value.
doubleA double-precision floating point value.
voidRepresents the absence of type.


Monday, 1 May 2017

C++ Tutorials [Hindi/Urdu]- intro

C++ Course Introduction

Watch Full course On Youtube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our Youtube Channel and subscribe ..Thanks.