unity for beginners (part 1-8)

  Рет қаралды 22,697

IndividualKex

IndividualKex

Күн бұрын

Пікірлер: 91
@canuniverse3367
@canuniverse3367 2 жыл бұрын
these videos forever changed my expectations for tutorials
@pssdstrr
@pssdstrr 2 жыл бұрын
Ablsolutely agree. That's awesome stuff. Thanks, Kex and keep going!
@broJakka
@broJakka 2 жыл бұрын
watch mziziziz tutorial
@mrgredy5068
@mrgredy5068 2 жыл бұрын
The fact that this man can make a understandable, funny, and good tutorial, its unbelivable.
@sivetive9611
@sivetive9611 2 жыл бұрын
watching those tutorials is like a fever dream and i absolutely love it
@howl2339
@howl2339 2 жыл бұрын
It's cool that u teach manu things but u are also fun! Great job
@NyanCatsss
@NyanCatsss 2 жыл бұрын
Been watching this series on TikTok and it helps a lot! Keep it up :)
@f2loffical
@f2loffical Жыл бұрын
bro you deserve 50 million subs thank you so much 😭😭❤️
@ZeroMotivationSoul
@ZeroMotivationSoul 2 ай бұрын
Broo damn it's totally direct point tutorial, no unseless info, straight to point, withbfun too ❤ amazing brother
@spekulatiu
@spekulatiu 2 жыл бұрын
This is awesome.
@immortalsun
@immortalsun 3 ай бұрын
Thanks. I’d love a longer series.
@browndoggie20yt33
@browndoggie20yt33 Жыл бұрын
this is like a bill wurtz style of tutorial
@odys1516
@odys1516 2 жыл бұрын
thanks for the video very helpful!
@Herytik
@Herytik 2 жыл бұрын
The problem I had with unity tutorials, you can make anything but once you try to do something on your own, you feel like you learned nothing. seriously, COMMENT YOUR CODE, it helped me overcome this hole i dug myself into
@MohammadShahirRafiq
@MohammadShahirRafiq Жыл бұрын
This man needs a raise
@mr.mysterious7744
@mr.mysterious7744 2 ай бұрын
This guy reminds me of the “history of the entire world I guess” video lol
@JoppieToppie
@JoppieToppie 2 жыл бұрын
Nice video! :)
@FatimaAbida-p6r
@FatimaAbida-p6r Жыл бұрын
Thank u for this amazing tutorial
@yaripetrocchi4207
@yaripetrocchi4207 5 ай бұрын
Thank you. Nice video :)
@kekblob
@kekblob 2 жыл бұрын
Love it 🙏🏻
@St3fa9s
@St3fa9s 10 ай бұрын
I got jumpscared at 5:01, nice tutorial! :)
@immortalsun
@immortalsun 3 ай бұрын
How?
@zaryte7
@zaryte7 6 ай бұрын
My code doesn't code D:
@kage6677
@kage6677 Жыл бұрын
Underrated
@preemanantz
@preemanantz 2 жыл бұрын
Code for part two is here (the slowing down didn't work for me, sorry. using System.Collections; using System.Collections.Generic; using UnityEngine; public class Player : MonoBehaviour { public float moveSpeed = 7f; public float acceleration = 50f; Rigidbody rigidBody; float moveX; int moveDir; void Awake() { rigidBody = GetComponent(); } void Update(){ moveDir = (int)Input.GetAxisRaw("Horizontal"); moveX = Mathf.MoveTowards(moveX, moveDir * moveSpeed, Time.deltaTime * acceleration); } void FixedUpdate() { rigidBody.velocity = new Vector3(moveX, rigidBody.velocity.y, 0); } }
@Alice-es1ux
@Alice-es1ux 2 жыл бұрын
It's not working for me, I'm not sure why
@preemanantz
@preemanantz 2 жыл бұрын
@@Alice-es1ux make sure all the other things have been done; like the groundcheck and putting groundcheck into the groundcheck variable in the player
@Random_guyOnInternet
@Random_guyOnInternet Жыл бұрын
Bro you don't have the full code
@SH_vrr
@SH_vrr 11 ай бұрын
Thank you so much
@samplesauce2210
@samplesauce2210 2 жыл бұрын
the code part on step 2 just doesnt work for me like some words arent the same colors as yours and what is that lightbulb thing and i dont have the bubble at the bottom left
@NikimonxD
@NikimonxD 9 ай бұрын
The colora dont matter
@ACEWZZVE
@ACEWZZVE 8 ай бұрын
me too
@reckleiesgaming6110
@reckleiesgaming6110 4 ай бұрын
@@ACEWZZVE same
@Dzends
@Dzends 2 жыл бұрын
great video
@PixelBlitzBOI
@PixelBlitzBOI 6 ай бұрын
*P H S I C S*
@shadowgodthegamer5738
@shadowgodthegamer5738 2 жыл бұрын
The graphics part should have been done in Unity URP since that is what most beginners should use (and do in my case)
@RCgamer-3611
@RCgamer-3611 2 жыл бұрын
What app do you use for editing code on windows
@sskderpturtel_1239
@sskderpturtel_1239 2 жыл бұрын
What extensions are you using on visual studio codes because my extensions don't really work that much
@YvngRay
@YvngRay 2 жыл бұрын
can you make another part of this video where you show us how to make the enemies & how we can attack them ?
@lowHP_
@lowHP_ Жыл бұрын
incase someone needs a 3D version of the movement here it is using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayerBasicMovement : MonoBehaviour { [Header("Stats")] [SerializeField] float moveSpeed; [SerializeField] float jumpLevel; [Header("Movement Enhancements")] float moveX; float moveZ; [SerializeField] float acceleration; [Header("Ground Check")] bool isGrounded; [SerializeField] GameObject groundCheck; Rigidbody _rigidbody; int moveDirX; int moveDirZ; private void Awake() { _rigidbody = GetComponent(); } private void Update() { moveDirX = (int)Input.GetAxisRaw("Horizontal"); if (moveDirX != 0 ) { moveX = Mathf.MoveTowards(moveX, moveDirX * moveSpeed, Time.deltaTime * acceleration); } else { moveX = Mathf.MoveTowards(moveX, moveDirX * moveSpeed, Time.deltaTime * acceleration * 1.5f); //Debug.Log("Mathf.MoveTowardsX works"); works } moveDirZ = (int)Input.GetAxisRaw("Vertical"); if (moveDirZ != 0) { moveZ = Mathf.MoveTowards(moveZ, moveDirZ * moveSpeed, Time.deltaTime * acceleration); } else { moveZ = Mathf.MoveTowards(moveZ, moveDirZ * moveSpeed, Time.deltaTime * acceleration * 1.5f); //Debug.Log("Mathf.MoveTowardsZ works"); works } isGrounded = Physics.CheckSphere(groundCheck.transform.position, .2f, LayerMask.GetMask("Walkable")); if (Input.GetButtonDown("Jump") && isGrounded) Jump(); } void Jump() { _rigidbody.velocity = new Vector3(_rigidbody.velocity.x, jumpLevel, _rigidbody.velocity.z); } private void FixedUpdate() { if (_rigidbody.velocity.y < .75f * jumpLevel || !Input.GetButtonDown("Jump")) _rigidbody.velocity += Vector3.up * Physics.gravity.y * Time.fixedDeltaTime * 3f; _rigidbody.velocity = new Vector3(moveX, _rigidbody.velocity.y, _rigidbody.velocity.z); _rigidbody.velocity = new Vector3(_rigidbody.velocity.x, _rigidbody.velocity.y, moveZ); } }
@ooktooknook
@ooktooknook Ай бұрын
so far of the 7 unity tutorial i've gone through i got through this one way farther then the other before it didn't work. I cant put the file for script in the sphere
@ByteSizeLyt
@ByteSizeLyt Жыл бұрын
For section 2 it says cannot convert float into int Nvm got it working but now the ball don't move. Nvm just realised I forgot to add the script to the sphere
@ps2enjoyer
@ps2enjoyer 2 жыл бұрын
I know I'm talking to a wall and you won't help me anyway, but can someone please tell me the right code for 4th part before groundcheck, because my jumping mechanic is not working.
@justinjones6783
@justinjones6783 Жыл бұрын
did you ever find the solution
@ps2enjoyer
@ps2enjoyer Жыл бұрын
@@justinjones6783 this was a while ago but i think i did you just have to do some tinkering (not completely sure though)
@TheMightyEditz
@TheMightyEditz 15 күн бұрын
In 2nd part the c# doesnt exist in mine
@CoClock
@CoClock Жыл бұрын
Max 300 reference!! This guy (probably) DDRs!!!
@richardbeare11
@richardbeare11 Жыл бұрын
Lmao! Now I know how to respond the next time someone asks me "Rich, how do I Unity?" - I'll respond with this. What video editing software are you using?
@dianabutin5271
@dianabutin5271 4 ай бұрын
the jumping code isn't working and i can't find the bug:/
@teluguassaulter1703
@teluguassaulter1703 Жыл бұрын
Maya keka maya nuvvu
@jaxonvolking1971
@jaxonvolking1971 Жыл бұрын
Can somebody help me out here? What is the code thing he’s using I know unity but like what is he using to write the code?
@EndriGreenZaz28
@EndriGreenZaz28 Жыл бұрын
C#
@Mr_Also
@Mr_Also Жыл бұрын
@@EndriGreenZaz28h yes I’m using writing to write
@majentron
@majentron Жыл бұрын
Visual Studio Code (VS Code)
@EndriGreenZaz28
@EndriGreenZaz28 Жыл бұрын
@@Mr_Also does he mean the application or the language?
@TheRealSareno
@TheRealSareno 3 ай бұрын
@@majentronTHANK YOU SO MUCHH
@zagprogaming
@zagprogaming Жыл бұрын
which language are you using?
@MohammadShahirRafiq
@MohammadShahirRafiq Жыл бұрын
He is using c#
@heart_locket2
@heart_locket2 Ай бұрын
​@@MohammadShahirRafiqya saying it like you can use boo and uscript in unity in 2024
@AasifHaque
@AasifHaque Жыл бұрын
nice
@preemanantz
@preemanantz 2 жыл бұрын
hello for part 7, the shake is missing in the onland thing in the screenshaek dropdown. how do i fix this?
@aidenakpan3213
@aidenakpan3213 Ай бұрын
where do I put the script because I opened in notes and it DID NOT WORK
@RDMANGLEYT
@RDMANGLEYT Ай бұрын
download a script editor. visual studio is usually the default installed on your windows PC
@heart_locket2
@heart_locket2 Ай бұрын
I used: Visual Studio Code, Atom IDE, Notepad++, and regular Notepad. All of these script editor are free and you can try one of them if notepad didn't work
@kalimuffin1
@kalimuffin1 Жыл бұрын
bro has the same energy as bill wurtz
@axelsmaxel
@axelsmaxel Жыл бұрын
where aer the rest of the parts
@IshanLamsal-c3n
@IshanLamsal-c3n Жыл бұрын
Basic how to 🙌💯
@A_Raptr
@A_Raptr 2 жыл бұрын
veri knice
@sortfl3248
@sortfl3248 2 жыл бұрын
What is the version
@Zoothteck-ggGamers1257
@Zoothteck-ggGamers1257 15 күн бұрын
not working
@ItsJxckyy
@ItsJxckyy 2 ай бұрын
WHY IS IT SO FAST?!😭
@bestboytubeOFC
@bestboytubeOFC 7 ай бұрын
BRO HAS 66,6K SUBS
@qedj
@qedj Жыл бұрын
oh man...
@JakesYoutube3487
@JakesYoutube3487 11 ай бұрын
6:00
@teluguassaulter1703
@teluguassaulter1703 Жыл бұрын
Mama speed ga cheyyi maya
@Arachknight-productions
@Arachknight-productions Жыл бұрын
How do I make a spider man game with unity? Plz respond
@HolyG-sus
@HolyG-sus Жыл бұрын
1 kidnapped 9
@samplesauce2210
@samplesauce2210 2 жыл бұрын
on part two i did exactly what you did and all it says is "all complier errors must be fixed before you can enter playmode"
@samplesauce2210
@samplesauce2210 2 жыл бұрын
OH MY GOD I FORGOT THE DEBUG.LOG im very new to coding
@preemanantz
@preemanantz 2 жыл бұрын
you're probably missing a semicolon
@PolloMarcko
@PolloMarcko 6 ай бұрын
The code explanation low-key wasnt good enough. But i guess this is why google exists.
@evanbob9114
@evanbob9114 2 жыл бұрын
Whenever I open it it goes to Firefox and I can’t edit
@evanbob9114
@evanbob9114 2 жыл бұрын
What do I open it with
@blissful.ignorance
@blissful.ignorance 2 жыл бұрын
@@evanbob9114 open with Visual Studio. It’s logo is a purple infinite loop.
@evanbob9114
@evanbob9114 2 жыл бұрын
@@blissful.ignorance it worked :)
@Usual_User
@Usual_User Жыл бұрын
"We don't need update" : creates update It reminds me of me when blender cube
@sgt007
@sgt007 2 ай бұрын
:)
@LabyrinthReality
@LabyrinthReality 2 жыл бұрын
I make bad vid i have more sub your really good
@indecisivewaffle5169
@indecisivewaffle5169 2 жыл бұрын
slow down man
@leafvrr8952
@leafvrr8952 Жыл бұрын
I just used chat gpu 💀
@LQQ.ERR0R
@LQQ.ERR0R Жыл бұрын
Nice
unity for beginners - part 1
0:51
IndividualKex
Рет қаралды 656 М.
6 DEVS Make a GAME without COMMUNICATING!!
13:53
Blackthornprod
Рет қаралды 1,7 МЛН
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 700 М.
Сестра обхитрила!
00:17
Victoria Portfolio
Рет қаралды 958 М.
Don’t Choose The Wrong Box 😱
00:41
Topper Guild
Рет қаралды 62 МЛН
She made herself an ear of corn from his marmalade candies🌽🌽🌽
00:38
Valja & Maxim Family
Рет қаралды 18 МЛН
unity for beginners - part 2
1:43
IndividualKex
Рет қаралды 14 М.
Why Majora's Mask's Blue Dog Took 25 Years to Win the Race
21:04
Vidya James
Рет қаралды 2,4 МЛН
I Made the Same Game in 8 Engines
12:34
Emeral
Рет қаралды 4,3 МЛН
every step to actually make your dream game (then sell it)
24:27
Giving Personality to Procedural Animations using Math
15:30
t3ssel8r
Рет қаралды 2,7 МЛН
5 Years of Making Games in Unity!
13:27
xzippyzachx
Рет қаралды 2,3 МЛН
6 Years of Learning Game Development
9:02
Codeer
Рет қаралды 2,4 МЛН
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 700 М.