Пікірлер
@RabeetaSheikh
@RabeetaSheikh Күн бұрын
You are a very very good teacher
@user-wm7ck7bh5d
@user-wm7ck7bh5d 6 күн бұрын
9:12 DO Kutton ky darmyan haddi ky liye larai
@WaqarKhalid-g2q
@WaqarKhalid-g2q 6 күн бұрын
Sir ya work real h
@AsadIjaz-pt5fg
@AsadIjaz-pt5fg 9 күн бұрын
Sir ji kaha sa import kar raha ha modal nahi ho rahi eport
@ramizkhan2411
@ramizkhan2411 9 күн бұрын
My previous fiverr account got suspended permanently; So, Can i create new fiverr account on my father iD Card but with old gigs, old profile picture (that was from suspended account) but with new payment method (new payoneer account), new window and new gmail acount? What do you suggest?
@umairsiddiquitruths2962
@umairsiddiquitruths2962 10 күн бұрын
Are you still there Farhan Bhai ?
@FarhanAqeel
@FarhanAqeel 9 күн бұрын
Yes..
@TrueMAN8th
@TrueMAN8th 12 күн бұрын
• Game Engine is a software that implements Physics, adds appearance, sound,and other gaming experiences, E.g. Free Fire(same as pubg), Flappy Bird: The Game Physics (Gravity) pulls the bird down and we try to stay in air while dodging obstacles, and there is sound in the game when crashing into obstacle and when gravity pulls the bird down completely, and Appearance (Visuals) is we can see the Game and we will be using Unity game engine • IDE is a software that we wrote our code in, like visual studio code, Intellij Idea, etc., and we will be using the IDE to write and edit C# programming language • we first write our code in IDE and then that IDE tells the Game Engine what work it has to do, Thankyou sir for teaching Game Development for free
@TrueMAN8th
@TrueMAN8th 12 күн бұрын
Sir, can you please make a 2D game development course just like this 3D game development course? I don't have a good PC for 3D game development but I think my PC will be able to handle 2D game development (i3 2nd Gen, 8GB Ram, No Graphics Card) and I currently can't upgrade my PC, so I would like to learn 2D game development and after upgrading my PC or building a new PC I will switch to 3D game development while looking for a job
@abdullahdilshad8201
@abdullahdilshad8201 13 күн бұрын
ye meri parent object me videoplayer rkhne ki option q ni aa rhi. kisi ko idea kia reason ho skti?
@TrueMAN8th
@TrueMAN8th 14 күн бұрын
My PC specifications:- CPU: i3 2nd Gen GPU: None Ram: 8GB SSD: 512GB, my PC runs Photoshop 2021 easily, what version of Unity 3D should I download and use? There are two ways in game industry, Game Development and Game Design, we're learning game development in this course, there are many programming languages mostly used for game development C# & C++, and there are software used to develop games that have all the required plugins built-in like physics, AI, and those software are called game engines, there are many game engines in industry free and paid too, top two in free category are Unity and Unreal, we will learn Unity 3D in this course
@pakdaliytv3901
@pakdaliytv3901 16 күн бұрын
2024 me kon kon follow kr raha ha
@user-wm7ck7bh5d
@user-wm7ck7bh5d 19 күн бұрын
jsy pubg mein gun change karta hai usper code lga hota hai jo ky ide mein likha jta hai or game engine usko use karta hai or animation chla deta hai or weapon change kardeta hai
@user-ly1me9jb4n
@user-ly1me9jb4n 19 күн бұрын
Sir dell ka laptop h i7 5th gen or 2 GB graphic card Nvidia Geforce ka or 8 Gd ram h
@user-vt5yh2of9q
@user-vt5yh2of9q 21 күн бұрын
slam bro, portfolio template me jo meterial(images) he wo kese hasil karen
@lolbanoori
@lolbanoori 24 күн бұрын
wo tou theek hai lekin.....
@Umer-z2u
@Umer-z2u 27 күн бұрын
sir mein 3d artist hon mera bhai game developer hai mny unky sath 2 saal kaam keya hai graphic ka complete kaam agya hai ab mein as a 3d artist job karon or sath mein development sekhta rahon?
@Gamering_op
@Gamering_op 28 күн бұрын
sai hai sai hai sai hai 😂😂😂😂😂😂
@wasilvlogs009
@wasilvlogs009 Ай бұрын
❤❤❤❤❤😊
@ironfist6518
@ironfist6518 Ай бұрын
Ok ke saath question mark tik ha sawal chodne ke liye
@Nimrashakeel-f9g
@Nimrashakeel-f9g Ай бұрын
sir mujy connects nhi mily please bta dy ??
@Nimrashakeel-f9g
@Nimrashakeel-f9g Ай бұрын
mny upwork account bnya ha but mujy connects nhi mily esa q ha ???
@jamali.092
@jamali.092 Ай бұрын
Sir ek issue a rha ha .. Can't add script behavior lesson 1 the script needs to drive from mono behavior What will be the solution of this? Kindly guide me
@slambhai01
@slambhai01 Ай бұрын
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Takken : MonoBehaviour { // Start is called before the first frame update void Start() { TakkenPlayer player1=new TakkenPlayer(); player1.playerName="Morri"; player1.watch=1; player1.watchcolor="white"; player1.dresscolor="black"; player1.heigth=5.2f; player1.skinColor="half white"; player1.Walk(); player1.run(); TakkenPlayer player2=new TakkenPlayer(); player2.playerName="Abdul Islam"; player2.watch=1; player2.watchcolor="black"; player2.heigth=5.45f; player2.skinColor="half White"; player2.dresscolor="white"; player2.Walk(); player2.run(); } // Update is called once per frame void Update() { } } public class TakkenPlayer:MonoBehaviour{ public string playerName; public int watch; public string watchcolor; public string dresscolor; public float heigth ; public string skinColor; public void Walk(){ print(playerName+"walk in masjid."); } public void run(){ print(playerName+"running in masjid road."); } }
@slambhai01
@slambhai01 Ай бұрын
using System.Collections; using System.Collections.Generic; using UnityEngine; public class RealClass : MonoBehaviour { // Start is called before the first frame update void Start() { GamePlayer player1=new GamePlayer(); player1.personName="Ali RAza"; player1.age=12; player1.skinColor="white"; player1.height=6.50f; player1.Walk(); player1.Run(); GamePlayer player2=new GamePlayer(); player2.personName="Abdul Islam"; player2.age =20; player2.height=5.33f; player2.skinColor="brown"; player2.Walk(); player2.Run(); } // Update is called once per frame void Update() { } } public class GamePlayer :MonoBehaviour{ public string personName; public int age; public float height; public string skinColor; // Start is called before the first frame update public void Walk(){ print(personName+"is walking."); } public void Run(){ print(personName+"is running."); } }
@slambhai01
@slambhai01 Ай бұрын
using System.Collections; using System.Collections.Generic; using UnityEngine; public class ParameterScript : MonoBehaviour { private int i=1; // Start is called before the first frame update void Start() { Book("physics",20,50,'B'); Book("mathematics",64,100,'B'); Book("Urdu",64,100,'B'); Book("islamyat",41,50,'A'); Book("pakstudy",40,75,'B'); Book("english",64,100,'B'); } void Book(string Bookname,int num,int totalNum,char grade){ do{ print(Bookname+"marks is"+num+"total marks is:"+totalNum+ "my grade is :"+grade); i++; }while(i<=1); } // Update is called once per frame void Update() { } }
@MuhammadJamil-n4z
@MuhammadJamil-n4z Ай бұрын
sir timer=0; lgane k bawajood -0. something dikha rha 0 nhi arha
@slambhai01
@slambhai01 Ай бұрын
using System.Collections; using System.Collections.Generic; using JetBrains.Annotations; using UnityEngine; public class Script : MonoBehaviour { // Start is called before the first frame update public int[] listName;//number of list mein ne unity k ander save ki hai means integer value void Start() { for(int i=0;i<listName.Length;i++){ print("Student Age is["+i+"] ="+listName[i]); } } // Update is called once per frame void Update(){ } }
@nanoshari
@nanoshari Ай бұрын
Assalamualaikum, does anyone have any update of Farhan bhai? I'm concerned. It's been a long while we have not heard from him. Ustaad e Mohtaram please respond. Jazakallahu khairan
@FarhanAqeel
@FarhanAqeel Ай бұрын
Walaikum salam. Alhamdulillah i am doing great.. bs ab basics end hen. intermediate resume krni hen :)
@nanoshari
@nanoshari Ай бұрын
@@FarhanAqeel Sir 💕 Dil thanda ho gya reply parh kar. Salamat rahain. Thank you for replying to me.
@Jahanzaib-Sahmal.
@Jahanzaib-Sahmal. Ай бұрын
Good Job 😊
@AnumFaiz-qe2dj
@AnumFaiz-qe2dj Ай бұрын
i earn 1000000000
@Apna.channel-study
@Apna.channel-study Ай бұрын
pora time to baqwas video ha game delement to sikya hi nhi
@JayAlif
@JayAlif Ай бұрын
🌎🌍🌏 Sab Num 1 banana chahate he ❤❤❤
@AFRIDIPLAYSYT
@AFRIDIPLAYSYT Ай бұрын
Ir I faced Gradle build error while im export android APK please sir how to fix
@ListenerArij
@ListenerArij Ай бұрын
Hi my name is Arij ,so I am using unity hub latest version but the 3d models link that you give us is not working in my unity hub . Please guide me that which models should I use
@SHAHABEdu-tainment
@SHAHABEdu-tainment Ай бұрын
Kia insight global company payment daty hy project complete krna ka bad ... Project submittiom sa phly sa nhi da rhy ..
@toshisharma5200
@toshisharma5200 Ай бұрын
hello sir. there is no option for free membership or connects. we have to buy 100 connects. i have seen many videos for free connects but there is no free connects. where is promo code to buy connects.
@memebyhamzaa
@memebyhamzaa Ай бұрын
apka software house kha hai?
@Krucezam
@Krucezam Ай бұрын
it is so sad i started watching in 2024 . i wish i had found this 3 years ago. hope i can learn something out of this series of lectures
@FarhanAqeel
@FarhanAqeel Ай бұрын
@Krucezam no prob. Just follow it like a dheet for 3 months and you'll feel the difference.. :)
@voicefromheart1631
@voicefromheart1631 Ай бұрын
Bhai ye jab hum visual studio download karte hein tou workloads mein Desktop or Mobile ki window mein 4 options hein konsi select krni hoti hai i don't know?
@Dyninginfiniteplayz
@Dyninginfiniteplayz Ай бұрын
Sir c++ ka couse alag se Krna predega ki nai
@mojmasti406
@mojmasti406 Ай бұрын
Started in 2024, and ended in 2 months :)
@mojmasti406
@mojmasti406 Ай бұрын
So ab main bhi kuch dino mein ye 1st phase khatam kr dunga, xd
@PawanKumar-yb3fh
@PawanKumar-yb3fh Ай бұрын
Primitive and non primitive btao😂 ? Deeth
@PawanKumar-yb3fh
@PawanKumar-yb3fh Ай бұрын
Sir internal access modifier ka ham sirf code use kr sakte h na 👍
@user-pj3by4ow6i
@user-pj3by4ow6i 2 ай бұрын
is ko signup kesy kary os ka koi video ?
@bukharikids7651
@bukharikids7651 2 ай бұрын
I am watching.. Start has been great so far
@Omniii_player
@Omniii_player 2 ай бұрын
1Game design 3d modelling Animation Level design Ux ui 2 programing C# C++ Fame engine Unity /unreal
@ViralVibesIshfaq
@ViralVibesIshfaq 2 ай бұрын
Bahi good job done, excellent
@MantalStarx
@MantalStarx 2 ай бұрын
great Sir your teaching methord is like a wow