🔴 Watch my Complete FREE Course! 🌍 th-cam.com/video/AmGSEH7QcDg/w-d-xo.html 🔴 2023 UPDATES AND CHANGES 🔴 99% of the video is still up to date, just some visual/interface changes but nothing serious, I made an updated download/install video here: unitycodemonkey.com/video.php?v=hKXsL7XNa9M The current LTS version is 2021.3, Unity automatically downloads that one when you download Unity Hub. The New Project window in Unity Hub looks a bit different but works the same, you have all kinds of Templates. Nowadays you should be making games using URP, so you should start from the URP template. The only reason why I didn't choose that one was to keep the video as simple as possible so I didn't want to bother people by talking about Render Pipelines. If you choose the URP template it will come with everything correctly setup. The Camera component will look slightly different depending on the Render Pipeline that you're using, that's normal. Also nowadays you shold probably be using Cinemachine unitycodemonkey.com/video.php?v=Ml8ptNeezsU 🔴 Frequently Asked Questions: - My material is pink! That means either no material has been assigned or an invalid shader. This happens often if you use Materials that are made for the Built-in Render Pipeline but you're using the Universal Render Pipeline. There is a converter tool to automatically convert from BRP to URP docs.unity3d.com/Packages/com.unity.render-pipelines.universal@12.0/manual/features/rp-converter.html - Do I need to learn Programming to make games? No, Unity has a very robust Visual Scripting tool which you can use to build games unitycodemonkey.com/video.php?v=8y6akNTUt2Y I also have a really in-depth course on making games entirely with Visual Scripting, there isn't a single line of code in these games unitycodemonkey.com/courses.php?c=visualscripting - Where do I write the code? You can use any IDE you want, by default Unity should install Visual Studio Community which is free - My visual studio didn't install! If you accidentally untick the Visual Studio checkbox it won't install automatically, you can just install it manually straight from Microsoft, the Community version is free visualstudio.microsoft.com/vs/community/ - My ball falls through the floor! Make sure both objects have colliders. Also make sure you don't mix 2D and 3D colliders. unitycodemonkey.com/video.php?v=Bc9lmHjqLZc - I cannot add my custom component to a game object! - Or "Can't add script component" Make sure the class name matches the file name exactly. And make sure the class extends MonoBehaviour. - My code isn't running! Make sure you attach the script to the game object, make sure the game object is enabled (tick the box next to the name) Also check that your functions are called exactly Start() and Update(), if you type start() it won't work. And also make sure you Save the changes, the code only compiles after you save the text file. - The code in the video isn't working! Make sure you copy it exactly, remember that code is case sensitive. So for example it's Debug.Log(); not debug.Log(); or Debug.log(); - How do I use Java/C++ in Unity? You can't, Unity only supports C# (although technically you can build a DLL in any language and use it from Unity) - I'm seeing an error! In order for anyone to help you, you need to be more specific than that, what exactly is the error? Maybe it's a syntax problem, maybe it's a shader issue, maybe it's a package problem. If you need help make sure you post specifics on exactly what the problem is, otherwise no one will be able to help you unitycodemonkey.com/video.php?v=KtY_5pDhqYY - When I double click a script it doesn't open! Go into Edit > Preferences > External Tools and in the drop down menu select your IDE, like for example Visual Studio Community 🔴 More Basics: C# Basics unitycodemonkey.com/video.php?v=IFayQioG71A Learn more C# unitycodemonkey.com/search.php?q=c%23 Game Object Vs Transform unitycodemonkey.com/video.php?v=B-dVf9wUEbg Character Controller 2D unitycodemonkey.com/video.php?v=Bf_5qIt9Gr8 Character Controller 3D unitycodemonkey.com/video.php?v=jXz5b_9z0Bc Beginner Advanced Concepts unitycodemonkey.com/video.php?v=0_UiF-4-7xM Animations unitycodemonkey.com/video.php?v=c4jtyDA7vcs Third Person Shooter unitycodemonkey.com/video.php?v=FbM4CkqtOuA How to Learn Unity unitycodemonkey.com/question.php?q=how-to-learn-unity 💬Are you looking for a more guided step-by-step path? 🌍Check out my complete courses! unitycodemonkey.com/courses ✅Learn exactly how I make my Steam games, or how to make games entirely with Visual Scripting, or learn about every Unity Tool and Feature!
Programming is half remembering something,half googling it, and half watching code monkey because he's examples are the most practical and I really appreciate his content :)
@@Hello-qg4yk it takes 3-5 mins to load its my processor's fault its an i5 670 when i bought this computer i knew nothing about computers but now i think i can make a gaming rig
@@alimardan2665 My pc is a celeron j1800 with a shitty igpu and it doesn't takes tree minutes to fully create a new project. I think you need to clean your pc.
@@genesessilva3429 I litterly had to search that cpu and i think its even worse then my i5 670 but its not entirely cpu's fault lately im having that 100% disk usage and i have searched the web for a fix and sometimes it works too but its basically windows 10's fault
@Samuelvine I swore because it provides emphasis onto my statement of how most people that try to do a tutorial video on Unity do a really bad job on how the engine works. After searching for a long time to find a decent video it gets really frustrating when you do not get the answers I am seeking so I then proceed to swear. Now I ask you, why are you asking this question? It is really not a big deal unless you are apart of a religion such as Christianity.
Unity was my first introduction to programming, over 5 years ago, but it's honestly one of the areas I have the least experience in. I have the skills to write a simple voxel game from scratch with opengl, but unity is still intimidating to me. I think I'll finally tackle it properly after all this time!
I've learned from this video tutorial so much in less time then I'd have learned it from a book. That's why I love courses and tutorial more than books regarding computer field only.
honestly speaking, this might seriously be the best introduction to unity and components I've ever seen. The way you methodically go through all the various components and explain them is insane
idk any thing about unity your not too slow not too fast just perfect👌 thank you so much for this it will help me for my start i saw an ad of your channel in the right time im hoping your channel will be from the biggest as fast as possible and thank you
Thx so much my guy . I had a dream to make a game and now that i have a pc you thought me how to use unity cuz without this i woukd of juat been crying in the corner regretting downloading unity and scraping my dream game Edit: so its Been 10 months and i ended up learning roblox and lua instead lol
Let's be real here, You're not going to 'learn' Unity in 17 minutes. You're just getting an overview here. If you really want to learn it, you have to spend time using it and familiarizing yourself with all its components. Myself, I've been studying Unity on my own for the past 2 months (about 6 hours a week) and I am STILL learning a ton everyday.
Yup absolutely, this is just a quick getting started guide. My goal with this video is to give a quick overview to someone who never touched Unity at all and after watching this they will know enough to go watch more advanced tutorials. I've been using Unity for 8 years and I'm always learning!
Well, everything worked Perfectly, its a way to start and for my memory i would need to refresh this tutorial many times in the course of maybe the next years
I wasn't so sure about what I wanted to do as soon as I graduate from high school. I took a half semester computer science class (currently in computer science 2 class bc I need it to graduate). I never knew that I would actually enjoy coding. We used code combat sometimes, and it was the funnest time I had. Recently, I had something click, and game development somehow interested me. Just being called a game developer would feel awesome. Creating a game to all my liking is a dream. I haven't started yet because I've been too busy with school, but I've been watching videos of game development, and it makes me excited. This is the first time I ever felt this way.
Finally a tutorial I can understand, and the video you made about clearing up the controversy made me feel more confident, not to mention I havent seen any other newer videos on those controversial subjects, so I think you've done a great job at cooling people off
Thank you for SAVING my life I'm learning Unity for a VR game development project and after learning through the basic downloading and UI, it was extremely daunting and then I found this video. [Even though I really don't all that much] I now feel like I know I'm doing more and feel more aquanted with the software. TL;DR: This video was extremely helpful.
This is a very helpful video ive always wanted to get into game making but ive never had time for it but now i can finally start doing something that I've been wanting to do since i was 10, right after my unity gets off 99%
I've been putting off learning unity because of how daunting it is because of all the different windows, tabs, drops downs etc but this man just broke through that wall for me. Thanks!
That's awesome to hear! I you're looking for a guided path I just recently published my complete free course unitycodemonkey.com/kitchenchaoscourse.php Best of luck in your learning journey!
Hi. Great summary of using Unity. Any word from Steam about your Learn Game Development program? Will it be listed as a game or will it be in the software section?
Still waiting on the review so not sure when it will be out. It took me a while to decide which category would be best and in the end I decided to categorize it as a game.
I finally understand the basics thanks! My problem tho is for some reason I can't figure out c# on unity feels really complicated for my brain lol any advice to where to learn or where to start? Thanks!
Programming is all about experience so the best advice is simply to keep at it. The more you write the better you will become. I covered various C# topics here th-cam.com/play/PLzDRvYVwl53t2GGC4rV_AmH7vSvSqjVmz.html If you're a complete beginner start with something really small like this th-cam.com/video/b5Wpni9KPik/w-d-xo.html Then as your skills improve go look for more advanced tutorials like this th-cam.com/video/waEsGu--9P8/w-d-xo.html Best of luck!
You only need that if you're trying to use the Visual Studio debugger. If not then you don't need to run the code in VS at all, it's just used for writing it.
@@CodeMonkeyUnity It would only work for me when I ran it. Also when I was learning how to program movement I couldn't get the code to reference the rigid body(Had to take a break because my health hasn't been the best so I haven't tried fixing that problem) I've been having a few issues with Visual studio.
Nice video, I would ask how can I design a simple model and export it to use it in unity (for example design a yellow and black cube or a football (black and white ball) ) another question : should I attend courses to be good in unity or the tutorials on you are adequate?? thanks for the tutorial ❤️
Im starting unity today and my goal is to become a successful game developer , coder , and website creater i will update after a couple monts of how my progress was with everything i know :)
Just saying, if anyone here makes a program with a grey interface, I'll freak out, think it's too complex and I'll never use it again. I'm not sure why, but that's the way the cookie crumbles.
Here's a Beginner guide to Unity, after this video you should have a base understanding of how the engine works and how you can expand upon it! 🌐 Have you found the videos Helpful and Valuable? ❤️ Support on Patreon www.patreon.com/unitycodemonkey or get the Game Bundle unitycodemonkey.com/gamebundle.php
@Maxwell Harris Its all about training your brain to learn to break up concepts into its individual parts. What is jumping? It's moving a transform upwards. What is crouching? A different state for the player to be in that possible alters the players hitbox. In the end its all about experience, the more you do the more you learn. Best of luck!
@Maxwell Harris This channel is super !!! But what you're looking for is "brackeys ". But I repeat in my opinion here you will find a better quality and universal video. "Code Monkey" is very cool !!!
Thanks for the tutorial. I just started with unity and it is hands down the most complete and useful tutorial I've seen by far. Again thank you very much and congratulations on an awesome video.
💬Are you looking for a more guided step-by-step path? 🌍Check out my complete courses! unitycodemonkey.com/courses ✅Learn exactly how I make my Steam games, or how to make games entirely with Visual Scripting, or learn about every Unity Tool and Feature!
I really liked the tutorial it was basic enough that I learned alot of fundmentals other tutorials are heavy in coding that I just forget by the sheer overwhelming of it all
I started with the official unity tutorial, but when they were literally explaining that comments are not read by the compiler in c#, i (a programmer) was like, hell no, thanks, I'll go and find something more useful. And I found it!
Thank you! Helped me to quickly recall everything in a short and to the point video. How did you get the UI to change so much when in game "Play" mode? I've made the mistake several times where I made a bunch of changes in game mode and not in scene mode so I lost those changes when I realized why things weren't working as expected and then lost those changes went back to scene "edit" mode. For the default it seems very subtle, for the video the change is very large and I'd see it better. Well at least I hope I see it better when working in the Unity UI. LOL
You mean the Play mode tint? You can set it in the Editor - Preferences - Colors - Playmode Tint Yup I do find it very helpful to have a very different color so that exact problem doesn't happen (which has indeed happened to me many times before I changed the default)
THANK YOU! I usually learn a lot by deconstruction but thats not applicable for learning new UI! (I can use it to understand scripts, though. I did it for CSS and HTML. also works for when i learn new languages and syntax) so thaNK YOU for taking away the biggest block in my way of learning unity.
This man went out of his way to make so many free courses that are worth gold this dude is so underrated respect to this man 💪 keep up the fantastic work i just started and ive been looking through websites youtube free courses and i stumbled across this man respect Bro
HELLO, BROTHER, MY DREAM IS TO BECOME A GAME DEVELOPER ON MY OWN. I HAVE MANY IDEAS FOR GAME DEVELOPMENT. SINCE MY CHILDHOOD, I AM SO INTERESTED IN GAME DEVELOPMENT AND HOW GAMES ARE CREATED AND I ALWAYS THINK WHY CAN'T WE CREATE GAMES... THIS THINKING LED ME TO START MY GAME DEVELOPMENT CAREER... THANK YOU FOR YOUR AWESOME BEGINNER TUTORIAL. LOVE FROM INDIA 😊😊😊
🔴 Watch my Complete FREE Course! 🌍 th-cam.com/video/AmGSEH7QcDg/w-d-xo.html
🔴 2023 UPDATES AND CHANGES 🔴
99% of the video is still up to date, just some visual/interface changes but nothing serious, I made an updated download/install video here: unitycodemonkey.com/video.php?v=hKXsL7XNa9M
The current LTS version is 2021.3, Unity automatically downloads that one when you download Unity Hub.
The New Project window in Unity Hub looks a bit different but works the same, you have all kinds of Templates.
Nowadays you should be making games using URP, so you should start from the URP template. The only reason why I didn't choose that one was to keep the video as simple as possible so I didn't want to bother people by talking about Render Pipelines. If you choose the URP template it will come with everything correctly setup.
The Camera component will look slightly different depending on the Render Pipeline that you're using, that's normal.
Also nowadays you shold probably be using Cinemachine unitycodemonkey.com/video.php?v=Ml8ptNeezsU
🔴 Frequently Asked Questions:
- My material is pink!
That means either no material has been assigned or an invalid shader. This happens often if you use Materials that are made for the Built-in Render Pipeline but you're using the Universal Render Pipeline. There is a converter tool to automatically convert from BRP to URP docs.unity3d.com/Packages/com.unity.render-pipelines.universal@12.0/manual/features/rp-converter.html
- Do I need to learn Programming to make games?
No, Unity has a very robust Visual Scripting tool which you can use to build games unitycodemonkey.com/video.php?v=8y6akNTUt2Y
I also have a really in-depth course on making games entirely with Visual Scripting, there isn't a single line of code in these games unitycodemonkey.com/courses.php?c=visualscripting
- Where do I write the code?
You can use any IDE you want, by default Unity should install Visual Studio Community which is free
- My visual studio didn't install!
If you accidentally untick the Visual Studio checkbox it won't install automatically, you can just install it manually straight from Microsoft, the Community version is free visualstudio.microsoft.com/vs/community/
- My ball falls through the floor!
Make sure both objects have colliders. Also make sure you don't mix 2D and 3D colliders. unitycodemonkey.com/video.php?v=Bc9lmHjqLZc
- I cannot add my custom component to a game object!
- Or "Can't add script component"
Make sure the class name matches the file name exactly. And make sure the class extends MonoBehaviour.
- My code isn't running!
Make sure you attach the script to the game object, make sure the game object is enabled (tick the box next to the name)
Also check that your functions are called exactly Start() and Update(), if you type start() it won't work.
And also make sure you Save the changes, the code only compiles after you save the text file.
- The code in the video isn't working!
Make sure you copy it exactly, remember that code is case sensitive. So for example it's Debug.Log(); not debug.Log(); or Debug.log();
- How do I use Java/C++ in Unity?
You can't, Unity only supports C# (although technically you can build a DLL in any language and use it from Unity)
- I'm seeing an error!
In order for anyone to help you, you need to be more specific than that, what exactly is the error? Maybe it's a syntax problem, maybe it's a shader issue, maybe it's a package problem. If you need help make sure you post specifics on exactly what the problem is, otherwise no one will be able to help you unitycodemonkey.com/video.php?v=KtY_5pDhqYY
- When I double click a script it doesn't open!
Go into Edit > Preferences > External Tools and in the drop down menu select your IDE, like for example Visual Studio Community
🔴 More Basics:
C# Basics unitycodemonkey.com/video.php?v=IFayQioG71A
Learn more C# unitycodemonkey.com/search.php?q=c%23
Game Object Vs Transform unitycodemonkey.com/video.php?v=B-dVf9wUEbg
Character Controller 2D unitycodemonkey.com/video.php?v=Bf_5qIt9Gr8
Character Controller 3D unitycodemonkey.com/video.php?v=jXz5b_9z0Bc
Beginner Advanced Concepts unitycodemonkey.com/video.php?v=0_UiF-4-7xM
Animations unitycodemonkey.com/video.php?v=c4jtyDA7vcs
Third Person Shooter unitycodemonkey.com/video.php?v=FbM4CkqtOuA
How to Learn Unity unitycodemonkey.com/question.php?q=how-to-learn-unity
💬Are you looking for a more guided step-by-step path?
🌍Check out my complete courses! unitycodemonkey.com/courses
✅Learn exactly how I make my Steam games, or how to make games entirely with Visual Scripting, or learn about every Unity Tool and Feature!
Kinda feels bad for the guy that got his balls fell to the ground
ty
Subtítulos nativos en Español, ¡bravo!
P
E
Watched in 2x speed, learned unity in less than 10 minutes.
Why are there so many people names as bread and toasters there are about three to four in the comment section
@@katieplayz6079 really? I never noticed.
Big brain *[on]*
Now repeat at 10 hours yourself ha ha ha
mad lad
Programming is half remembering something,half googling it, and half watching code monkey because he's examples are the most practical and I really appreciate his content :)
The most important thing is experience, the more experience you have the less you'll need to google. Keep at it!
And half learning from your mistakes.
@@hummusgamedev9621 and half debugging
How is there three halfs
@@emanuelmalm9076 i know right, he probably speaks the language of outer universe , or probably 100% = 1,5
I finished watching this video while Unity was loading
Ikr i need a beeter pc too
Ali Mardan It is that slow? For me it only takes 30 seconds ?!
@@Hello-qg4yk it takes 3-5 mins to load its my processor's fault its an i5 670 when i bought this computer i knew nothing about computers but now i think i can make a gaming rig
@@alimardan2665 My pc is a celeron j1800 with a shitty igpu and it doesn't takes tree minutes to fully create a new project. I think you need to clean your pc.
@@genesessilva3429
I litterly had to search that cpu and i think its even worse then my i5 670 but its not entirely cpu's fault lately im having that 100% disk usage and i have searched the web for a fix and sometimes it works too but its basically windows 10's fault
**Learn Unity In 20 Minutes**
My Brain After 20 Minutes:
*Confused Unga Bunga*
No worries you just gotta read the text
Me with some experience: *more confused unga bunga*
*Noises**
@@justamanofculture12 :/
Me: works in unity for over 2 years, knows advanced stuff, uses it every day
Also me: watch tutorials on unity 101
It's always great to review the basics! You might even come across a tip or shortcut you didn't know about!
Hank Hill: “The true masters practice the basics.”
You are not the only one 😂💔
@@CodeMonkeyUnity 👌🏼👍🏼
Can i make unity game with c# basics and how many time it took to learn c# for unity please reply
This is the "introductory" video I had been looking for. Quick and filled with useful information.
Been using it for a year, and this is probably the easiest, and most useful tutorial for beginners I've seen! Even I learnt something! :o)
This is a really, really good introduction. Thank you.
Much better than all the previous tutorials I watched.
Excellent video as basic introduction to "how to work with" Unity.
Only legends know how useful is this man.
Hats off to u for ur support on discord
@@Light-hc5ll Indeed yeah
This is by far the best, all the others do not teach any of how it actually fucking works
@Samuelvine I swore because it provides emphasis onto my statement of how most people that try to do a tutorial video on Unity do a really bad job on how the engine works.
After searching for a long time to find a decent video it gets really frustrating when you do not get the answers I am seeking so I then proceed to swear.
Now I ask you, why are you asking this question? It is really not a big deal unless you are apart of a religion such as Christianity.
Unity was my first introduction to programming, over 5 years ago, but it's honestly one of the areas I have the least experience in. I have the skills to write a simple voxel game from scratch with opengl, but unity is still intimidating to me. I think I'll finally tackle it properly after all this time!
Go for it! Best of luck in your learning journey!
did you start yet?
this was much better than other tutorials i watched, not feeling overloaded and actually took it in
I'm glad you liked it! Thanks!
Finally. A tutorial that isn’t 2 hours and only contains 1 minute of useful info
20 minutes and zero minutes of useful info?
I know right? Love how he doesn't respond to this
@@Ozzah I think he means the 2 hour videos have 1 minute of useful info
@@MegaPurpleMonster000 You're not particularly intelligent, are you?
I watched that one
What a fantastic tutorial! I'm an Unreal boy for the last 7 years and this helped me pick up Unity basics soooo quickly.
hello sir, just getting started with unity. very exited :)and it seems even easier due to ur tutorials
Go for it! Best of luck in your journey!
Unity is the best from tutorial side
I've learned from this video tutorial so much in less time then I'd have learned it from a book. That's why I love courses and tutorial more than books regarding computer field only.
Yeah you are shooting yourself in the foot. This guy just spoon feeds you.
@@MegaPurpleMonster000 G I F
honestly speaking, this might seriously be the best introduction to unity and components I've ever seen. The way you methodically go through all the various components and explain them is insane
Thanks! I'm glad you liked it!
Its been years since i last used unity, this video was the PREFECT video to get back into unity and a prefect reminder of how it all works
SAME but the last time I used unity was 2 years ago lol
idk any thing about unity your not too slow not too fast just perfect👌 thank you so much for this it will help me for my start i saw an ad of your channel in the right time im hoping your channel will be from the biggest as fast as possible and thank you
im recruiting beginners so they can work together and grow if u want
I learned more from this than the basic official tutorial unity gives you...
Great job, awesome video. I'm going to start getting into unity and this was super helpful.
I'm glad you found it helpful!
Thx so much my guy . I had a dream to make a game and now that i have a pc you thought me how to use unity cuz without this i woukd of juat been crying in the corner regretting downloading unity and scraping my dream game
Edit: so its Been 10 months and i ended up learning roblox and lua instead lol
same for me!!!!
1:40 Are we just going to ignore how fast this man types
It was sped up, you can tell by the change of volume and the sudden speed
yeah
it was sped up plus it wasn't even that fast
Let's be real here, You're not going to 'learn' Unity in 17 minutes. You're just getting an overview here. If you really want to learn it, you have to spend time using it and familiarizing yourself with all its components. Myself, I've been studying Unity on my own for the past 2 months (about 6 hours a week) and I am STILL learning a ton everyday.
New things I did learn from watching this video: Changing the zoom speed (I discovered how to do this before, but I did not know what it did).
Yup absolutely, this is just a quick getting started guide. My goal with this video is to give a quick overview to someone who never touched Unity at all and after watching this they will know enough to go watch more advanced tutorials.
I've been using Unity for 8 years and I'm always learning!
@@Someone-ig7we I'd start by going to learn.unity.com
@@Someone-ig7we Here's a great one for beginners: learn.unity.com/project/creator-kit-fps
@@thejuice027 Have you started any projects btw?
I’ve been watching so many unity tutorials and this is by far the most helpful yet for an absolute beginner like myself
This was extremely helpful, thank you! I liked and subbed! 👍
Glad it helped!
Just got Unity. This helped TONS! Thank you!
Well, everything worked Perfectly, its a way to start and for my memory i would need to refresh this tutorial many times in the course of maybe the next years
I'm glad the video helped you! Thanks!
Damn. Finally a good video that doesn't ramble on about the interface. I swear most treat it like we have never seen a computer before.
Well done.
I pray to God that one Day You Will achieve every thing you dream of..
God Bless You Man
We Are Always with you
There is no need to insert your god. It is possible to do Unity learning without a god
@@jgestiot 😂😂 May God Heal You
@@jgestiot It's easier with god!
@@ChiroTheSkunk Everything is easier with God. It is called delusion
@@ChiroTheSkunk It's easier with family ;)
I wasn't so sure about what I wanted to do as soon as I graduate from high school. I took a half semester computer science class (currently in computer science 2 class bc I need it to graduate). I never knew that I would actually enjoy coding. We used code combat sometimes, and it was the funnest time I had.
Recently, I had something click, and game development somehow interested me. Just being called a game developer would feel awesome. Creating a game to all my liking is a dream. I haven't started yet because I've been too busy with school, but I've been watching videos of game development, and it makes me excited. This is the first time I ever felt this way.
That's great to hear, go for it! Best of luck in your learning journey!
Dude. FINALLY someone who teaches at a reasonable speed. All the other tutorials were so slow I lost my attention a few minutes in. Thanks a lot!
This was awesome, I just watched it prior to an intro webinar! Can't wait!
Thanks for the awesome tutorial. I've been wanting to switch to unity for a while so this really helps.
Thanks! Best of luck in your journey!
Finally a tutorial I can understand, and the video you made about clearing up the controversy made me feel more confident, not to mention I havent seen any other newer videos on those controversial subjects, so I think you've done a great job at cooling people off
Amazing: a really good start to everyone
Mega Epic! Most valuable starter tutorial for Unity. Much appreciated!!!
than you sir. I have been using unity for years and I never learned the basics
I'm a complete beginner on unity helped a lot thanks
wanna learn with my team ? were hobbiests and i have a sub team of beginners who will learn together and grow
This content is the reason I'm subscribed
Thank you for SAVING my life
I'm learning Unity for a VR game development project and after learning through the basic downloading and UI, it was extremely daunting and then I found this video. [Even though I really don't all that much] I now feel like I know I'm doing more and feel more aquanted with the software.
TL;DR: This video was extremely helpful.
I'm glad the video helped! Best of luck in your learning journey!
This is a very helpful video ive always wanted to get into game making but ive never had time for it but now i can finally start doing something that I've been wanting to do since i was 10, right after my unity gets off 99%
As someone who's probably going to be using Unity for my A-Level Computer Science coursework, this video was very helpful thanks
Thank you! This is far more helpful than the official Unity tutorial.
I've been putting off learning unity because of how daunting it is because of all the different windows, tabs, drops downs etc but this man just broke through that wall for me. Thanks!
That's awesome to hear! I you're looking for a guided path I just recently published my complete free course unitycodemonkey.com/kitchenchaoscourse.php
Best of luck in your learning journey!
when is the unity game coming out on steam?
I'm still waiting on the review so not sure, hopefully soon
I've actually wanted to see someone make a complete full game on nothing but stock default Unity assets.
Hi. Great summary of using Unity.
Any word from Steam about your Learn Game Development program? Will it be listed as a game or will it be in the software section?
Still waiting on the review so not sure when it will be out. It took me a while to decide which category would be best and in the end I decided to categorize it as a game.
Thank you so much brother ❤. This tutorial indeed boosted my curiosity to learn Unity!
I'm glad you found the video helpful! Thanks!
I finally understand the basics thanks! My problem tho is for some reason I can't figure out c# on unity feels really complicated for my brain lol any advice to where to learn or where to start? Thanks!
Programming is all about experience so the best advice is simply to keep at it. The more you write the better you will become.
I covered various C# topics here th-cam.com/play/PLzDRvYVwl53t2GGC4rV_AmH7vSvSqjVmz.html
If you're a complete beginner start with something really small like this th-cam.com/video/b5Wpni9KPik/w-d-xo.html
Then as your skills improve go look for more advanced tutorials like this th-cam.com/video/waEsGu--9P8/w-d-xo.html
Best of luck!
If you're coding in in 2022 you have to press run in Visual coder before it'll run in Unity. Thanks to this guy for uploading this vid
You only need that if you're trying to use the Visual Studio debugger. If not then you don't need to run the code in VS at all, it's just used for writing it.
@@CodeMonkeyUnity It would only work for me when I ran it. Also when I was learning how to program movement I couldn't get the code to reference the rigid body(Had to take a break because my health hasn't been the best so I haven't tried fixing that problem) I've been having a few issues with Visual studio.
Nice video, I would ask how can I design a simple model and export it to use it in unity (for example design a yellow and black cube or a football (black and white ball) )
another question : should I attend courses to be good in unity or the tutorials on you are adequate??
thanks for the tutorial ❤️
Unity can import 3D Models on just about any format. So just build them in your 3D program of choice and export as something like .fbx
You can.make your 3D models in any program such as blender or Maya and then export from them and import in Unity
Nice, watched this video and I just finished my MMORPG thank you for teaching me unity!!!!
Your tutorials are very helpful god bless you🙏🙏
Thank you!
Im starting unity today and my goal is to become a successful game developer , coder , and website creater i will update after a couple monts of how my progress was with everything i know :)
Best of luck with your journey!
@@CodeMonkeyUnity thanks man
Just saying, if anyone here makes a program with a grey interface, I'll freak out, think it's too complex and I'll never use it again. I'm not sure why, but that's the way the cookie crumbles.
absolutely excellent condensed tutorial that makes sense of the whole unity system in the shortest amount of time.
And yep, it's a good video!
I love your tutorials man, this is like the 3rd one I watch, what I love the most is how u got kermit the frog to voice the videos
i can't unhear that
I open the video.
I check recommended videos on the side.
One of the videos was a tutorial for unity.
*It was over two hours long*
2 hours? Baby numbers
Watching this in 2022, thank you for this video. I needed this for my college course. It taught me alot
That's great to hear! Best of luck in college!
Here's a Beginner guide to Unity, after this video you should have a base understanding of how the engine works and how you can expand upon it!
🌐 Have you found the videos Helpful and Valuable?
❤️ Support on Patreon www.patreon.com/unitycodemonkey or get the Game Bundle unitycodemonkey.com/gamebundle.php
@Maxwell Harris Its all about training your brain to learn to break up concepts into its individual parts. What is jumping? It's moving a transform upwards. What is crouching? A different state for the player to be in that possible alters the players hitbox.
In the end its all about experience, the more you do the more you learn. Best of luck!
@Maxwell Harris This channel is super !!! But what you're looking for is "brackeys ". But I repeat in my opinion here you will find a better quality and universal video. "Code Monkey" is very cool !!!
Thanks for the tutorial. I just started with unity and it is hands down the most complete and useful tutorial I've seen by far.
Again thank you very much and congratulations on an awesome video.
Can you help me in a dragon project which is a game
yo dude, it would be nice if you could make another tutorial on the newer version 2020 version, so it would help cover the newer aspects in it
It is a great video. Thanks for making this wonderful video. It is very helpful for beginners
💬Are you looking for a more guided step-by-step path?
🌍Check out my complete courses! unitycodemonkey.com/courses
✅Learn exactly how I make my Steam games, or how to make games entirely with Visual Scripting, or learn about every Unity Tool and Feature!
Bro honestly, your voice is very cute🥰😘
@@Captainpricegoingdark uhh i guess your right?🤔
OMFG! You're the best! I just learned the basics btw. I'm not a noob anymore. I'm cool. : )
These videos are so important for the future of games
🌍 Get Code Monkey on Steam!
👍 Interactive Tutorials, Complete Games and More!
✅ store.steampowered.com/app/1294220/
Thank you!!!!! This is exactly what a beginner needs!!!
This was very helpful, thank you!
This was extremely helpful. Thanks
That was very well done.
Thank you!
Thanks for making this video, very helpful!
I really liked the tutorial it was basic enough that I learned alot of fundmentals other tutorials are heavy in coding that I just forget by the sheer overwhelming of it all
Whoo! I’m going to have to watch this video over and over again if i’m gonna remember this stuff.
Thank you so much for great introduction about unity, it really helps beginners. I feel that you missed the prefabs and Project settings part.
liked, commented and subscribe and rang the notification bell. The best tutor ever
I'm glad you liked the video! Thanks!
Thanks! This is actually my first time using Unity.
Awesome! You're exactly the type of person I had in mind when I made this video!
@@CodeMonkeyUnity Hey, if you don't mind, can you show me how to make a city? The time of day I want it to be is night. Thanks!
5:30 - if you wanna move up/down you can use Q/E
I started with the official unity tutorial, but when they were literally explaining that comments are not read by the compiler in c#, i (a programmer) was like, hell no, thanks, I'll go and find something more useful. And I found it!
This video inspired me to buckle down and start using unity consistantly
Go for it!
Really Good Explanation! I Subscribed For The Awesome Work!
I'm glad you liked the video!
@@CodeMonkeyUnity You Deserve it Bro!!!
"The only limit is your imagination". And skill. And time. Oh, and a lot of other things I forgot to mention
Thank you! Helped me to quickly recall everything in a short and to the point video.
How did you get the UI to change so much when in game "Play" mode? I've made the mistake several times where I made a bunch of changes in game mode and not in scene mode so I lost those changes when I realized why things weren't working as expected and then lost those changes went back to scene "edit" mode.
For the default it seems very subtle, for the video the change is very large and I'd see it better. Well at least I hope I see it better when working in the Unity UI. LOL
You mean the Play mode tint? You can set it in the Editor - Preferences - Colors - Playmode Tint
Yup I do find it very helpful to have a very different color so that exact problem doesn't happen (which has indeed happened to me many times before I changed the default)
@@CodeMonkeyUnity Awesome, thank you! Yes, I'm guessing it's the play mode tint. Definitely going to set that. :)
Thank you so much! This will help a lot!
THANK YOU! I usually learn a lot by deconstruction but thats not applicable for learning new UI! (I can use it to understand scripts, though. I did it for CSS and HTML. also works for when i learn new languages and syntax) so thaNK YOU for taking away the biggest block in my way of learning unity.
this is soo usful to learning the basics
I'm glad you found it helpful! Thanks!
Very helpful!
Thank you Code Monkey!
I was super excited to do this! Got ready, organised my files, hit the button... 'we cannot load your project, it is not valid'
THANK YOU SOOOO MUCH! THIS IS WHAT I NEEDED!
God bless this video I got a game prototype due in a month and I have no clue what to do but thanks to you I have a chance now
Best of luck with your prototype!
held down the fast forward button and learned it in 1 minute. ULTRA BIG BRAIN
Exactly what is needed to refresh your 'year old knowledge about Unity.
I love your videos
I tried for 2 months to reach this introduction. I'ts very short and useful.
Thx for helping our Agent team
This was really good. I was using unity for about 6 months but i did'nt knew many things you told
I'm glad the video was useful!
Wow! Extremely helpful!
This man went out of his way to make so many free courses that are worth gold this dude is so underrated respect to this man 💪 keep up the fantastic work i just started and ive been looking through websites youtube free courses and i stumbled across this man respect Bro
I hope you learn a lot! Thanks!
7min.. until now THANKS, i did some proyects on the past but i didnt remember unity itself and i needed to refresh my memory
HELLO, BROTHER, MY DREAM IS TO BECOME A GAME DEVELOPER ON MY OWN. I HAVE MANY IDEAS FOR GAME DEVELOPMENT. SINCE MY CHILDHOOD, I AM SO INTERESTED IN GAME DEVELOPMENT AND HOW GAMES ARE CREATED AND I ALWAYS THINK WHY CAN'T WE CREATE GAMES... THIS THINKING LED ME TO START MY GAME DEVELOPMENT CAREER... THANK YOU FOR YOUR AWESOME BEGINNER TUTORIAL. LOVE FROM INDIA 😊😊😊
Nice! Best of luck in your learning journey!
THIS IS THE BEST UNITY TUTORIAL ON TH-cam
I'm glad you liked it! Thanks!