these videos forever changed my expectations for tutorials
@pssdstrr2 жыл бұрын
Ablsolutely agree. That's awesome stuff. Thanks, Kex and keep going!
@broJakka2 жыл бұрын
watch mziziziz tutorial
@mrgredy50682 жыл бұрын
The fact that this man can make a understandable, funny, and good tutorial, its unbelivable.
@sivetive96112 жыл бұрын
watching those tutorials is like a fever dream and i absolutely love it
@howl23392 жыл бұрын
It's cool that u teach manu things but u are also fun! Great job
@NyanCatsss2 жыл бұрын
Been watching this series on TikTok and it helps a lot! Keep it up :)
@f2loffical Жыл бұрын
bro you deserve 50 million subs thank you so much 😭😭❤️
@ZeroMotivationSoul2 ай бұрын
Broo damn it's totally direct point tutorial, no unseless info, straight to point, withbfun too ❤ amazing brother
@spekulatiu2 жыл бұрын
This is awesome.
@immortalsun3 ай бұрын
Thanks. I’d love a longer series.
@browndoggie20yt33 Жыл бұрын
this is like a bill wurtz style of tutorial
@odys15162 жыл бұрын
thanks for the video very helpful!
@Herytik2 жыл бұрын
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 Жыл бұрын
This man needs a raise
@mr.mysterious77442 ай бұрын
This guy reminds me of the “history of the entire world I guess” video lol
@JoppieToppie2 жыл бұрын
Nice video! :)
@FatimaAbida-p6r Жыл бұрын
Thank u for this amazing tutorial
@yaripetrocchi42075 ай бұрын
Thank you. Nice video :)
@kekblob2 жыл бұрын
Love it 🙏🏻
@St3fa9s10 ай бұрын
I got jumpscared at 5:01, nice tutorial! :)
@immortalsun3 ай бұрын
How?
@zaryte76 ай бұрын
My code doesn't code D:
@kage6677 Жыл бұрын
Underrated
@preemanantz2 жыл бұрын
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-es1ux2 жыл бұрын
It's not working for me, I'm not sure why
@preemanantz2 жыл бұрын
@@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 Жыл бұрын
Bro you don't have the full code
@SH_vrr11 ай бұрын
Thank you so much
@samplesauce22102 жыл бұрын
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
@NikimonxD9 ай бұрын
The colora dont matter
@ACEWZZVE8 ай бұрын
me too
@reckleiesgaming61104 ай бұрын
@@ACEWZZVE same
@Dzends2 жыл бұрын
great video
@PixelBlitzBOI6 ай бұрын
*P H S I C S*
@shadowgodthegamer57382 жыл бұрын
The graphics part should have been done in Unity URP since that is what most beginners should use (and do in my case)
@RCgamer-36112 жыл бұрын
What app do you use for editing code on windows
@sskderpturtel_12392 жыл бұрын
What extensions are you using on visual studio codes because my extensions don't really work that much
@YvngRay2 жыл бұрын
can you make another part of this video where you show us how to make the enemies & how we can attack them ?
@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Ай бұрын
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 Жыл бұрын
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
@ps2enjoyer2 жыл бұрын
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 Жыл бұрын
did you ever find the solution
@ps2enjoyer Жыл бұрын
@@justinjones6783 this was a while ago but i think i did you just have to do some tinkering (not completely sure though)
@TheMightyEditz15 күн бұрын
In 2nd part the c# doesnt exist in mine
@CoClock Жыл бұрын
Max 300 reference!! This guy (probably) DDRs!!!
@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?
@dianabutin52714 ай бұрын
the jumping code isn't working and i can't find the bug:/
@teluguassaulter1703 Жыл бұрын
Maya keka maya nuvvu
@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 Жыл бұрын
C#
@Mr_Also Жыл бұрын
@@EndriGreenZaz28h yes I’m using writing to write
@majentron Жыл бұрын
Visual Studio Code (VS Code)
@EndriGreenZaz28 Жыл бұрын
@@Mr_Also does he mean the application or the language?
@TheRealSareno3 ай бұрын
@@majentronTHANK YOU SO MUCHH
@zagprogaming Жыл бұрын
which language are you using?
@MohammadShahirRafiq Жыл бұрын
He is using c#
@heart_locket2Ай бұрын
@@MohammadShahirRafiqya saying it like you can use boo and uscript in unity in 2024
@AasifHaque Жыл бұрын
nice
@preemanantz2 жыл бұрын
hello for part 7, the shake is missing in the onland thing in the screenshaek dropdown. how do i fix this?
@aidenakpan3213Ай бұрын
where do I put the script because I opened in notes and it DID NOT WORK
@RDMANGLEYTАй бұрын
download a script editor. visual studio is usually the default installed on your windows PC
@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 Жыл бұрын
bro has the same energy as bill wurtz
@axelsmaxel Жыл бұрын
where aer the rest of the parts
@IshanLamsal-c3n Жыл бұрын
Basic how to 🙌💯
@A_Raptr2 жыл бұрын
veri knice
@sortfl32482 жыл бұрын
What is the version
@Zoothteck-ggGamers125715 күн бұрын
not working
@ItsJxckyy2 ай бұрын
WHY IS IT SO FAST?!😭
@bestboytubeOFC7 ай бұрын
BRO HAS 66,6K SUBS
@qedj Жыл бұрын
oh man...
@JakesYoutube348711 ай бұрын
6:00
@teluguassaulter1703 Жыл бұрын
Mama speed ga cheyyi maya
@Arachknight-productions Жыл бұрын
How do I make a spider man game with unity? Plz respond
@HolyG-sus Жыл бұрын
1 kidnapped 9
@samplesauce22102 жыл бұрын
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"
@samplesauce22102 жыл бұрын
OH MY GOD I FORGOT THE DEBUG.LOG im very new to coding
@preemanantz2 жыл бұрын
you're probably missing a semicolon
@PolloMarcko6 ай бұрын
The code explanation low-key wasnt good enough. But i guess this is why google exists.
@evanbob91142 жыл бұрын
Whenever I open it it goes to Firefox and I can’t edit
@evanbob91142 жыл бұрын
What do I open it with
@blissful.ignorance2 жыл бұрын
@@evanbob9114 open with Visual Studio. It’s logo is a purple infinite loop.
@evanbob91142 жыл бұрын
@@blissful.ignorance it worked :)
@Usual_User Жыл бұрын
"We don't need update" : creates update It reminds me of me when blender cube