Han bhai 3 + 5 kia hota h? 😂 aur Farhan nitrate/Babu bhai ko kis kis ne pehchana?? Share zarur kardena if this video was good.. sari confusion facebook group pe post karden xD Link: facebook.com/groups/FreelancingHelpOfficial Insta: "farhan.aqeel"
Acessmodifiers : ye ksi ko ksi kaam ya data dene ya nadene ke liye use hoty hai. private : is modifier wale data ya kaam ko hum same class ke block Mai use krte or isko koi or class use nhi krskta public : is modifier wale data ya kaam ko hum whole program yaani ksi bi class Mai acess krskte hai 💲data means variables 💲Kaam means functions or methods. Variables ?? 1 empty box ya container jismai hum data ko save krte hai . Or data tb tk us variable Mai save rehta hai jb tk program running mode Mai hai. Data : wo cheez jise hum dekh skte hai data hai. Like (texts , images , audios , videos ) What is Datatype ? Data means jise hum dekte hai or type means wo data kis form Mai hai (text , number , special characer , image , video , sound ) agr hum data or type dono ko combine krde tu datatype bnta hai or datatype Mai hum data ki form ko likte hai yaani uski form Kya hai. Basic Datatypes : 1) string 2) int 3) float 4) char 5) bool Iske ilawa or bi datatypes hoskte hai datatype ke kuch khususiat bi hoti hai.jis Mai data ka size Kya hona chahiye ye SB shamil hai. Note : 1)String ke data ko hum double quotations ke andar likte hai. Public String app_name = "TH-cam" ; 2) Character ke data ko hum single qoute Mai likte hai. Public char key = 'w' ; 3) numbers wale jitni bi datatypes hai (int , float , double) inko na tu double qoutation Mai likte hai or na hi single qoutation mai agr hum numbers ko double qoutation Mai likhde tu wo string bnjayega or usnumber pr hum operation perform nhi krskte operation means calculations ( + , - , * , ÷ , % ) etc. a) For int : private int age = 19 ; ☑️ private int age = "19" ; ❎ b) For float ; public float height = 5.9f ; ☑️ public float height = 5.9; ❎ c) For double ; double Mai float or int dono type ke data ko save krskte hai. So question is fir jb int or float dono ke liye alag alag datatype hai tu ye Kyu bnayagya hai? Answer : because agr bre size ka number hai tu use hum int or float Mai nhi store krskte uske liye Hume double use krna prta hai. ✌️. .✌️
its called concatenation using System.Collections; using System.Collections.Generic; using UnityEngine; public class lesson1: MonoBehaviour { private string name = "kamran"; // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { Debug.Log(" My Name Is "+name); } }
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Variable : MonoBehaviour { private string box = "Mohsin"; // Use this for initialization void Start () { }
// Update is called once per frame void Update () { Debug.Log ("My name is " + box); } } "Bhai logo mene 10 se uppar ye video or is se pehli vale videos dekhi tab jake sare concepts clear hoe h agar kisi ko bhi shuruwat m samjh na aaye to ghabraye nhi"
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Variable : MonoBehaviour { private string myName = "Ertugrul"; // Start is called before the first frame update void Start() {
} // Update is called once per frame void Update() { Debug.Log("Suleman Shah ka Beta "+myName+"!"); } }
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Variables : MonoBehaviour { private string myName = "Amaan";
// Start is called before the first frame update void Start() {
} // Update is called once per frame void Update() { Debug.Log("I love Peaky Blinders "); } } Respected Sir, Assigment Successfully Done ! 😊😁
sir ma script lekta o but unity may load e ni hota farhan is here and farhan loop be leka but ni accecpt kiya unity ny ma sir 2018.4.20ft unity use kr rha o and visual studio 2017 wala download kiya ha pc i5 3rd generation 4 gb ram ha please ans me
Question: i have installed 2 versions of unity and also 2 versions of visual studio code, is it good to keep 1 version of vs code for all unity versions?
sir Farhan, I had a question. please reply even I try to Use the bolt software to build a game. is it ok? I try to understand the programming but it's too hard I need a suggestion.
Assignmnet Solution: public class Variable : MonoBehaviour { private string name = "Talha "; // Start is called before the first frame update void Start() {
} // Update is called once per frame void Update() { Debug.Log("My Name Is " + name); } }
Done bro karlia magar ek bat mujhy samjh ai k agar variable or script ka name same hoga to error ata hai script nhi lagti kisi object pe am right sir ?
sir c# k ilawa hum koi or pro language use kar sakty ha yani javscript agar ma javascript use karo sekho to problem to ni ? or programming language ka use game dev ma kaha hota ha ? #FarhanAqeel
hi i am only 13 years old and i am also understanding you're mind blowing hi i am only 13 years old and i am also understanding you're mind blowing hi i am only 13 years old and i am also understanding you're mind blowing
public class Script1 : MonoBehaviour { private string my_name = "Mha Sultan!!"; // Use this for initialization void Start () { } // Update is called once per frame void Update () { Debug.Log("My name is " + my_name); //Here is the exercise .. } }
SECOND WAY TO PRINT public string name =" MY NAME IS MAHINDER SINGH"; void update() { Debug.Log(name); } in UNITY console print = MY NAME IS MAHINDER SINGH
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Variables : MonoBehaviour { private string Myname1 = ("Asif Rasheed"); private string Myname2 = ("Rasheed Ahmad"); private string Myname3 = ("Kotla Musa Khan"); // Start is called before the first frame update void Start() {
} // Update is called once per frame void Update() { Debug.Log("Myname1 =Asif Rasheed. +Myname2 = Rasheed Ahmad +Myname3 = Kotla Musa Khan"); } Result= Myname1 =Asif Rasheed. +Myname2 = Rasheed Ahmad +Myname3 = Kotla Musa Khan UnityEngine.Debug:Log (object) Variables:Update () (at Assets/Script/Variables.cs:21)
lolz 17:46 :) babu bhai i also think same i pause your video and write babu don instead of babu bhaoi first i think babu bhai then i wrote babu don i think the same name babu lolz i didnt see you also wrote when i come back lolz i see the same think i wrote
using System.Collections; using System.Collections.Generic; using UnityEngine; public class variables : MonoBehaviour { private string myName = "raofaizan"; // Use this for initialization void Start () { } // Update is called once per frame void Update () { Debug.Log("learning game development: " +myName); } }
Types of Values/Data: • string - stores text, such as "Hello World." Double quotes surround string values • Integral - stores integers (whole numbers) without decimals, such as 123 or -123 • double - stores floating-point numbers, with decimals, such as 19.99 or -19.99 • char - stores single characters, such as 'a' or 'B.' Single quotes surround char values • boolean - stores values with two states: true or false
using System.Collections; using System.Collections.Generic; using UnityEngine; public class veriable : MonoBehaviour { public string myName = "Shakil"; // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { Debug.Log("My Name is:" + myName); //Debug.Log(myName); } }
sir ma script lekta o but unity may load e ni hota farhan is here and farhan loop be leka but ni accecpt kiya unity ny ma sir 2018.4.20ft unity use kr rha o and visual studio 2017 wala download kiya ha pc i5 3rd generation 4 gb ram ha please ans me
Han bhai 3 + 5 kia hota h? 😂 aur Farhan nitrate/Babu bhai ko kis kis ne pehchana?? Share zarur kardena if this video was good..
sari confusion facebook group pe post karden xD
Link: facebook.com/groups/FreelancingHelpOfficial
Insta: "farhan.aqeel"
Thanks, Sr but Abhi mere pass koi system Nhi hai for gaming but I am interested...
@Trilax gamer babu bhai sb k favourite character hen xD
8
@@FarhanAqeel 8
😘😘😘😘🥰🥰🥰🥰🥰🥰🥰🥰🥰🥰
are the best instructor ever sir
Acessmodifiers : ye ksi ko ksi kaam ya data dene ya nadene ke liye use hoty hai.
private : is modifier wale data ya kaam ko hum same class ke block Mai use krte or isko koi or class use nhi krskta
public : is modifier wale data ya kaam ko hum whole program yaani ksi bi class Mai acess krskte hai
💲data means variables
💲Kaam means functions or methods.
Variables ?? 1 empty box ya container jismai hum data ko save krte hai . Or data tb tk us variable Mai save rehta hai jb tk program running mode Mai hai.
Data : wo cheez jise hum dekh skte hai data hai. Like (texts , images , audios , videos )
What is Datatype ?
Data means jise hum dekte hai or type means wo data kis form Mai hai (text , number , special characer , image , video , sound ) agr hum data or type dono ko combine krde tu datatype bnta hai or datatype Mai hum data ki form ko likte hai yaani uski form Kya hai.
Basic Datatypes :
1) string
2) int
3) float
4) char
5) bool
Iske ilawa or bi datatypes hoskte hai datatype ke kuch khususiat bi hoti hai.jis Mai data ka size Kya hona chahiye ye SB shamil hai.
Note :
1)String ke data ko hum double quotations ke andar likte hai.
Public String app_name = "TH-cam" ;
2) Character ke data ko hum single qoute Mai likte hai.
Public char key = 'w' ;
3) numbers wale jitni bi datatypes hai (int , float , double) inko na tu double qoutation Mai likte hai or na hi single qoutation mai agr hum numbers ko double qoutation Mai likhde tu wo string bnjayega or usnumber pr hum operation perform nhi krskte operation means calculations ( + , - , * , ÷ , % ) etc.
a) For int :
private int age = 19 ; ☑️
private int age = "19" ; ❎
b) For float ;
public float height = 5.9f ; ☑️
public float height = 5.9; ❎
c) For double ;
double Mai float or int dono type
ke data ko save krskte hai.
So question is fir jb int or float dono
ke liye alag alag datatype hai tu ye
Kyu bnayagya hai?
Answer : because agr bre size ka number hai tu use hum int or float Mai nhi store krskte uske liye Hume double use krna prta hai.
✌️. .✌️
Perfect!
@@FarhanAqeel yes Farhan Bhai I shared on FB group⭐
thx bro
its called concatenation
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class lesson1: MonoBehaviour
{
private string name = "kamran";
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
Debug.Log(" My Name Is "+name);
}
}
Nicely explained
Awesome very useful...... ❤️❤️
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Variable : MonoBehaviour {
private string box = "Mohsin";
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
Debug.Log ("My name is " + box);
}
}
"Bhai logo mene 10 se uppar ye video or is se pehli vale videos dekhi tab jake sare concepts clear hoe h agar kisi ko bhi shuruwat m samjh na aaye to ghabraye nhi"
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Variable : MonoBehaviour
{
private string myName = "Ertugrul";
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
Debug.Log("Suleman Shah ka Beta "+myName+"!");
}
}
alhumdulliha i done it ,and thanks sir
console window nai aa rahe.
Sir agr public karkay farhan ki jagah "my name is farhan" liko tu direct hojata hay
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Variables : MonoBehaviour
{
private string myName = "Amaan";
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
Debug.Log("I love Peaky Blinders ");
}
}
Respected Sir, Assigment Successfully Done ! 😊😁
Sir my Unity Scene windows is not showing Grids Lines boxes
sir ma script lekta o but unity may load e ni hota farhan is here and farhan loop be leka but ni accecpt kiya unity ny ma sir 2018.4.20ft unity use kr rha o and visual studio 2017 wala download kiya ha pc i5 3rd generation 4 gb ram ha please ans me
[SerializeField] Private String Variable = "Check";
in update function
{
Debug.Log("My Name Is:" + Variable);
}
ye directional light wala 3d model aap ko kahan se mila plz help !!
Sir nichy console wali jagha kuch show ni ho raha.
Debug.log("my name is " + my_name);
ye log funtion jo print function ka jesa hai sir?
hmmm lauch your full course on udemy i will defiinately buy it !!!!!!!!!!
Question: i have installed 2 versions of unity and also 2 versions of visual studio code, is it good to keep 1 version of vs code for all unity versions?
apke videos india se dekhta hun, kafi sare ads aate hein, CPM kya he apke videos ka?
3 + 5 = 8
sir Farhan, I had a question. please reply even I try to Use the bolt software to build a game.
is it ok? I try to understand the programming but it's too hard I need a suggestion.
answer: th-cam.com/video/iLwvFBLbols/w-d-xo.html
agar hard lag rahi h to teacher change kar k dekhen. video dekh k practice karen ek se ziada bar. notes banaen. question ho to group me post karen.
Best teancher
Sir all compiler error have to be fixed ka error a raha ha
Assignmnet Solution:
public class Variable : MonoBehaviour
{
private string name = "Talha ";
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
Debug.Log("My Name Is " + name);
}
}
Assets\scriptrs\variables.cs(17,8): error CS0103: The name 'Dubbing' does not exist in the current context
Assets\scriptrs\variables.cs(17,14): error CS0117: 'Debug' does not contain a definition for 'log
c# is case-sensitive. its Log, not log
Done bro karlia magar ek bat mujhy samjh ai k agar variable or script ka name same hoga to error ata hai script nhi lagti kisi object pe am right sir ?
sir c# k ilawa hum koi or pro language use kar sakty ha yani javscript agar ma javascript use karo sekho to problem to ni ? or programming language ka use game dev ma kaha hota ha ?
#FarhanAqeel
iska answer class 1 me h.
@@FarhanAqeel ok sir thank you so much
Sir how we can do that k first 500 time Farhan print ho aus k bad phir farhan nitrate ho ..
Ham 2 videos k bad conditions parhengay tb ye cheez ajaeygi
@@FarhanAqeel thanks
syntex apne konse class parhaya tha sir ?( first class me to nh hy syntex ka zikar)
1 + 2
Sirf zikar kiya tha ke syntax for example programming language ka grammer hai..
Tommorow is my exam thanks
hi i am only 13 years old and i am also understanding you're mind blowing
hi i am only 13 years old and i am also understanding you're mind blowing
hi i am only 13 years old and i am also understanding you're mind blowing
public class Script1 : MonoBehaviour {
private string my_name = "Mha Sultan!!";
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
Debug.Log("My name is " + my_name); //Here is the exercise ..
}
}
SECOND WAY TO PRINT
public string name =" MY NAME IS MAHINDER SINGH";
void update()
{
Debug.Log(name);
}
in UNITY
console print = MY NAME IS MAHINDER SINGH
Nice
private string myName = "My name is Danial";
Debug.Log (myName);
result... My Name is Danial
is this right method ??
No🤣🤣🤣
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Variables : MonoBehaviour
{
private string Myname1 = ("Asif Rasheed");
private string Myname2 = ("Rasheed Ahmad");
private string Myname3 = ("Kotla Musa Khan");
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
Debug.Log("Myname1 =Asif Rasheed. +Myname2 = Rasheed Ahmad +Myname3 = Kotla Musa Khan");
}
Result= Myname1 =Asif Rasheed. +Myname2 = Rasheed Ahmad +Myname3 = Kotla Musa Khan
UnityEngine.Debug:Log (object)
Variables:Update () (at Assets/Script/Variables.cs:21)
lolz 17:46 :) babu bhai i also think same i pause your video and write babu don instead of babu bhaoi first i think babu bhai then i wrote babu don i think the same name babu lolz i didnt see you also wrote when i come back lolz i see the same think i wrote
hahaha..
Sir please laptop ky cursor py koi cheez lagayan jis sy cursor asani sy nazarr ayyyy humm ko. Is trha patta ni chalta cursor khnn ha
Next class se iska khayal rakhunga :) suggestions aur questions fb group pe post kardia karen. asani rehti h
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class variables : MonoBehaviour {
private string myName = "raofaizan";
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
Debug.Log("learning game development: " +myName);
}
}
Using# hi 🤣🤣🙏🙏🙏
public string myName = "zubair";
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
Debug.Log ("my Name is"+ myName);
}
Sir maine apne coding theek kiya hai but still my play button is not working plz sir resolve this issue
please post a screenshot in the group
I would like to use phone a friend for your question
try this friend for your question: th-cam.com/video/x0lL-zLJL8M/w-d-xo.html
sir meri console window nhi araha ha plz help
IDE install kro
Start k code block me Debug.Log("Hello") likhen. ajaeyga
Same issue mera b consol window show nae ho ra
Assignment answer= Debug.Log("My name is "+myName);
3 + 5 = 7😛😛!!
Just Kidding!!
3 + 5= 8😁😁!!
Computer bhai kaise bolay ga?
Red line bana k cheekh cheekh k bolay ga k error h.
sir ye cheez me java script me kar sakta hu me aapko insta pe bhejoonga code because i am a web developer
its better to do the assignment in c# and post it in the group
sir u forgot "PRE RAJULIZATION" 🤣
3+5=35😁😁😁😁
Types of Values/Data:
• string - stores text, such as "Hello World." Double quotes surround string values
• Integral - stores integers (whole numbers) without decimals, such as 123 or -123
• double - stores floating-point numbers, with decimals, such as 19.99 or -19.99
• char - stores single characters, such as 'a' or 'B.' Single quotes surround char values
• boolean - stores values with two states: true or false
Do post this in Facebook group as well. it will help others too
thx
sir kabhi bhi ye kaam mat chorna karte rehna
jis ko programming ati hai wo to boar horha hai
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class veriable : MonoBehaviour
{
public string myName = "Shakil";
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
Debug.Log("My Name is:" + myName);
//Debug.Log(myName);
}
}
private string myName1 = "Bilal Nasim";
private string myName2 = "Farhan Aqeel";
Debug.Log("My name is= " + myName1 + ".My Game Development Teacher is= " + myName2 + ".");
Output=My name is= Bilal Nasim.My Game Development Teacher is= Farhan Aqeel.
Jis ne computer ko programming language sekahi wo agar computer ko english sekha deta to kya chala jata 😂😂😂😂😂😂😂😂
Yes 😂😂😂😂😂😂😂
8
slam farhan aqeel uncle my name is zahraa 3+5=8 is your answer thanks
plz coment with me .
Bhai pubg ke liye kya karu tum jitna batate ho wo samaj aata hai lekin pubg jaisa game kaise banaye 😵😵
is video me ap k answers hen :
th-cam.com/video/iLwvFBLbols/w-d-xo.html
th-cam.com/video/LjpUa8jezew/w-d-xo.html
8 hota hy
farhan nitrate prerajulization 🤣
3+5=8🤣🤣🙏🙏🙏
Debug.Log ("My name is ", myName);
Nope
@@BECEOODipen yeah + instead of ,
3+5=5+3😂😂😂
Chammar Jaat hai tum
Eigh8
Console.debug('my name is'+myName);
Nicely explained
sir ma script lekta o but unity may load e ni hota farhan is here and farhan loop be leka but ni accecpt kiya unity ny ma sir 2018.4.20ft unity use kr rha o and visual studio 2017 wala download kiya ha pc i5 3rd generation 4 gb ram ha please ans me
group me screenshot post krden me dekh leta hn
3 + 5 = 8
8
8
8
8
8
8
8
8
8
8
8
8
8