Jake Makes Games

Jake Makes Games

Hey, I'm Jake, an Indie Game Dev from Melbourne Australia.
On the channel I'll be posting game development related content, including Dev Logs, Tutorials and Game Dev Challenges.

Twitter: twitter.com/jakemakesgames
Itch.io: jakemakes-games.itch.io/
Website: jakemakesgames.wixsite.com/home

GUTBUG - Game Jam Trailer

GUTBUG - Game Jam Trailer

Goodbye Unity Engine

Goodbye Unity Engine

Пікірлер

  • @Ferenc-Racz
    @Ferenc-Racz7 күн бұрын

    Short.. Old.. BUT very very useful video! Thank you for it! <3 (subscribed)

  • @JakeMakesGames
    @JakeMakesGames7 күн бұрын

    You’re welcome! Glad you enjoyed!

  • @RootsOf7
    @RootsOf713 күн бұрын

    when I set it to game view the ui doesn't show up, however it does if I set the render mode to world space

  • @JakeMakesGames
    @JakeMakesGames13 күн бұрын

    Made sure on the “canvas scaler” component “ui scale mode” is set to “scale with screen size”, that may help your issue!

  • @RootsOf7
    @RootsOf713 күн бұрын

    @@JakeMakesGames thanks you! I realized now that the canvas scales to the screen already and doesn't need to be within the camera. I thought I had to keep the images within the camera to see it in game 😓

  • @JakeMakesGames
    @JakeMakesGames12 күн бұрын

    @@RootsOf7 thats odd.. if you create them as UI images as a child of the canvas, it should be fine

  • @SicoSiber
    @SicoSiber14 күн бұрын

    Finishing games is definitely the hardest part of making them lol

  • @JakeMakesGames
    @JakeMakesGames13 күн бұрын

    100%! It’s a skill I lack and am trying to get better at!

  • @theepicgamer1496
    @theepicgamer149614 күн бұрын

    nice vid

  • @JakeMakesGames
    @JakeMakesGames14 күн бұрын

    Thanks!

  • @SicoSiber
    @SicoSiber14 күн бұрын

    why does this comment ask for google to translate it? lol

  • @itsmidge
    @itsmidge16 күн бұрын

    This should be a fun project. Different enough from stuff you've made before so it probably feels fresh. But it seems reasonable in scope, I think this will be good one.

  • @JakeMakesGames
    @JakeMakesGames16 күн бұрын

    It’s definitely super fresh to work on something completely different! Have done a few things in the project so far I’ve never done before so it’s been good for my brain!

  • @Electro_Mic
    @Electro_Mic22 күн бұрын

    Woooo, perfect. 👍

  • @JakeMakesGames
    @JakeMakesGames22 күн бұрын

    Glad you enjoyed!

  • @sozdatellive
    @sozdatelliveАй бұрын

    Thanks for this tutorial! It's very useful. But I have one problem. When I'm dashing I am becoming slower than I was before(than actual speed). I've tried to fix it somehow, but I can't do this. Can you help me? public float speed; public bool hasDashRune; public Rigidbody2D rb2d; public GameObject Ghostoo; public Vector3 direction; private float activeMoveSpeed; public float dashSpeed; public float dashLength = .5f, dashCooldown = 1f; private float dashCounter; private float dashCoolCounter; SpriteRenderer spriteRenderer; //[SerializeField] private TrailRenderer tr; //void ChangePosition() //{ //Ghostoo.transform.position = direction; //} void Start() { activeMoveSpeed = speed; spriteRenderer = GetComponent<SpriteRenderer>(); Cursor.lockState = CursorLockMode.Locked; Cursor.visible = false; } void Update() { rb2d.velocity = direction * activeMoveSpeed; direction = Vector3.zero; if(Input.GetKey(KeyCode.W)|| Input.GetKey(KeyCode.UpArrow)){ direction += new Vector3(0, 1, 0); } if(Input.GetKey(KeyCode.S) || Input.GetKey(KeyCode.DownArrow)){ direction += new Vector3(0, -1, 0); } if(Input.GetKey(KeyCode.D)|| Input.GetKey(KeyCode.RightArrow)){ direction += new Vector3(1, 0, 0); spriteRenderer.flipX = false; } if(Input.GetKey(KeyCode.A)|| Input.GetKey(KeyCode.LeftArrow)){ direction += new Vector3(-1, 0, 0); spriteRenderer.flipX = true; } if(Input.GetKeyDown(KeyCode.RightShift)) { if(dashCoolCounter <= 0 && dashCounter <= 0) { activeMoveSpeed = dashSpeed; dashCounter = dashLength; } } if(dashCounter > 0) { dashCounter -= Time.deltaTime; if(dashCounter <= 0) { activeMoveSpeed = speed; dashCoolCounter = dashCooldown; } } if(dashCoolCounter > 0) { dashCoolCounter -= Time.deltaTime; } Ghostoo.transform.position = Vector3.Lerp(Ghostoo.transform.position, Ghostoo.transform.position + direction, Time.deltaTime * speed); Ghostoo.transform.rotation = Ghostoo.transform.rotation; }

  • @JakeMakesGames
    @JakeMakesGames21 күн бұрын

    mmm, interesting. Your code looks fine at a glance. Ensure you’re setting the correct speed in code and setting the speed in the inspector as well

  • @user-hy1xm6ss9l
    @user-hy1xm6ss9lАй бұрын

    my unity keeps crasing

  • @JakeMakesGames
    @JakeMakesGames22 күн бұрын

    Not sure if it’s due to compiler errors or your machine? Are you getting any errors?

  • @rusurobert4917
    @rusurobert4917Ай бұрын

    satana

  • @JakeMakesGames
    @JakeMakesGamesАй бұрын

    whaaat? hahah

  • @prerananayyar1953
    @prerananayyar1953Ай бұрын

    Did u use 2d core universal or 2d built in render pipeline?

  • @JakeMakesGames
    @JakeMakesGamesАй бұрын

    I can’t remember which I used, but with this still work for both

  • @superhydra8873
    @superhydra8873Ай бұрын

    Hey your artstyle is really good, what tools do you use?

  • @JakeMakesGames
    @JakeMakesGamesАй бұрын

    Thanks! The art in this video was not mine and is placeholder, but for all of my hand drawn stuff, and cartoon thumbnails etc I use procreate on my iPad

  • @user-ih3en9wp2v
    @user-ih3en9wp2vАй бұрын

    Great tutorial but im getting an error that says one of the floats is an " invalid token"

  • @JakeMakesGames
    @JakeMakesGamesАй бұрын

    Check to make sure there is a semicolon at the end of the line, that’s the only thing I can think of it being

  • @user-qz1iy3ue9g
    @user-qz1iy3ue9gАй бұрын

    sorry I know Im writing it pretty late but still did anyone have same problem as me where character also slowly moves down

  • @JakeMakesGames
    @JakeMakesGamesАй бұрын

    If you’re having this issue, check the characters rigidbody component and make sure the “gravity scale” is set to 0

  • @user-qz1iy3ue9g
    @user-qz1iy3ue9gАй бұрын

    @@JakeMakesGames thanks it finaly works

  • @JakeMakesGames
    @JakeMakesGamesАй бұрын

    @user-qz1iy3ue9g no worries! Glad I could help

  • @slightlygruff
    @slightlygruffАй бұрын

    do you connect script that destroys coins to player or to coin ?

  • @JakeMakesGames
    @JakeMakesGamesАй бұрын

    It’s in the coin script, which is attached to the coin

  • @MSStudio00
    @MSStudio00Ай бұрын

    Great video, thanks for help!

  • @JakeMakesGames
    @JakeMakesGamesАй бұрын

    No worries! Glad it helped!

  • @myth6628
    @myth66282 ай бұрын

    easy and short thank you

  • @JakeMakesGames
    @JakeMakesGames2 ай бұрын

    you’re welcome! Glad it helped

  • @mehboobshah5205
    @mehboobshah52052 ай бұрын

    thanks

  • @JakeMakesGames
    @JakeMakesGames2 ай бұрын

    You’re welcome!

  • @jesterspades1717
    @jesterspades17172 ай бұрын

    maybe next time show what happens in the hierarchy. idk what's going on.

  • @JakeMakesGames
    @JakeMakesGames2 ай бұрын

    thanks for the feedback

  • @orileshem486
    @orileshem4862 ай бұрын

    Amazing tutorial saved me hours of video watching!!!!

  • @JakeMakesGames
    @JakeMakesGames2 ай бұрын

    Thanks for the kind words! I’m glad it helped!

  • @DJack276
    @DJack2762 ай бұрын

    Music loud

  • @JakeMakesGames
    @JakeMakesGames2 ай бұрын

    Sorry about that, I’ve fixed this issue in later tutorials

  • @UptownFade666
    @UptownFade6662 ай бұрын

    Tried to support you on patreon but it says your account isnt set up for that

  • @JakeMakesGames
    @JakeMakesGames2 ай бұрын

    I appreciate that, unfortunately when I had my patreon set up I didn’t really have the time to put into it so I shut it down, hopefully I’ll be able to work towards trying again soon!

  • @JakeMakesGames
    @JakeMakesGames2 ай бұрын

    I appreciate that, unfortunately when I had my patreon set up I didn’t really have the time to put into it so I shut it down, hopefully I’ll be able to work towards trying again soon!

  • @UptownFade666
    @UptownFade6662 ай бұрын

    @@JakeMakesGames Hey quick Question: How would I modify this script to make the enemy rotate to face me as he chases. Right now he just chases but wont face me. using System.Collections; using System.Collections.Generic; using UnityEngine; public class Enemyfollow : MonoBehaviour { public float speed = 1.0f; public Transform target; // Update is called once per frame void Update() { transform.position = Vector3.MoveTowards(transform.position, target.position, speed * Time.deltaTime); } }

  • @ItzPixeledYT
    @ItzPixeledYT2 ай бұрын

    Hey man its me epicgamer but sadly that account doesnt work anymore.

  • @Blahblahblahbra
    @Blahblahblahbra3 ай бұрын

    Thank you

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    You’re welcome! Glad it could help

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    i need help with my game do u mind helpingme ?

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    i have no problem with mentoring/ guiding you, depending on the scope of your game. send me a message on discord or twitter @JakeMakesGames and we'll have a chat

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    can u say how to make a weapon system also

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    its definitely doable, although i dont have the time to make tutorials longer than my usual 1-minute long ones at the moment as im working on my own game while working a full time job.

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    @@JakeMakesGames ok

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    Insane bro ur the best

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    thanks, i appreciate it!

  • @EvilP
    @EvilP3 ай бұрын

    How do I choose the controls? It looks right, but how do I make it so that it goes up when I press W etc...

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    You should be able to use W to move as that what the built in axis is mapped to. If you mean changing what controls you’re using, you can either change the input axis key by navigating to edit -> project settings -> input or alternatively customise the script to use unitys new input system

  • @EvilP
    @EvilP3 ай бұрын

    @@JakeMakesGames For some reason it wasnt default to W, thanks

  • @grimez7869
    @grimez78693 ай бұрын

    Ayyy love to see the tutorials, keep em coming 🙌

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    Thanks homie! 🔥

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    An inventory tutorial

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    I’ve been having a look into simple inventory systems and I think I’ll have to make a multi-part mini series as I don’t think I’ll be able to do it in a single video

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    @@JakeMakesGames ook

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    nice man keep it up

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    Thank you!

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    I have just uploaded an updated 1 minute camera follow tutorial using CINEMACHINE! Check it out here! kzread.info/dash/bejne/ZGSZrbhrddLbhaQ.htmlsi=RpMT7cyZo7n-86G3

  • @CS2ClownCrew
    @CS2ClownCrew3 ай бұрын

    when I press play the Health Amount constantly increases, however, when I disabled the heal part of the script this stopped but I would still want the healing part to work... any ideas?

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    Check to see how the heal function is being called. If it’s being called in update without and checks it’s going to increase constantly

  • @OrsonHere
    @OrsonHere3 ай бұрын

    i used this and it worked but it seemes even if i use a different one, when i move my player shakes violently

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    Interesting, try moving the movement code for the camera into either fixed or late update and see if you get better results

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    Thanks i modified it so that it uses new input system

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    Well done!

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    @@JakeMakesGames thanks. alsou reply fast XD

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    Could u make a tutorial on making a fully fledged weapon system which includes recoil. Weapon swap and reloading. Thanks for considering

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    I’ll have a think and see if I’ll have the time to do it!

  • @karlislewalker7583
    @karlislewalker75833 ай бұрын

    Bro! Epic 🔥

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    Thanks legend!

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    U could make a multiplayer mode just a suggestion

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    maybe local co-op could be a possibility later down the line!

  • @personal1412
    @personal14122 ай бұрын

    Ok 🆗😂🎉

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    Yay yay u won’t believe how happy I am. I just studied for my exam tomorrow for the day I can finally watch something nice

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    good stuff! glad you’re enjoying the devlogs so far!

  • @knuggets139
    @knuggets1393 ай бұрын

    Let's go

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    heck yeah!

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    Hey i found edgar pro for free. Just downloaded and works perfectly

  • @w0r1d_d43m0n
    @w0r1d_d43m0n3 ай бұрын

    this is...beautiful. short. not 30 minutes long of some guy droning on like "aaaaaaaaaaaaannnnnnnnnnnnddddddddddd nnnnnnnoooooowwwwww"

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    Thank you! I appreciate it, glad you enjoyed the tutorial!

  • @user-zu7zz6om2v
    @user-zu7zz6om2v3 ай бұрын

    finnaly, i have been trying to make a rougelike for a while

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    I’ve had multiple attempts, but im ready to get this done!

  • @user-zu7zz6om2v
    @user-zu7zz6om2v3 ай бұрын

    still working on hitboxes and collsions, my character keeps no clipping through the walls of the testing room

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    @user-zu7zz6om2v keep at it, you’ll get there!

  • @user-yb1vu8ff2k
    @user-yb1vu8ff2k3 ай бұрын

    Great stuff! 😊

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    Thank you!

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    Play makes a video on how to make this level editor I would be very useful my my game

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    what type of game are you making? If I was to make a tutorial on this level editor it would definitely be a long tutorial series and I’m not sure I have the time for it but I’ll see how I go

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    @@JakeMakesGames i a planning on making an rpg with a twist i would like to use your help in making it

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    @theepicgamer1496 I’d be more than happy to answer any questions or have, or point you in the right direction to find what you’re looking for! shoot me a message on Twitter if you have that @jakemakesgames!

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    @@JakeMakesGames thanks i will

  • @theepicgamer1496
    @theepicgamer14963 ай бұрын

    Finally a video

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    yes! I’ve got more coming soon!

  • @grimez7869
    @grimez78693 ай бұрын

    He has returned 🙌

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    yessir!

  • @user-zu7zz6om2v
    @user-zu7zz6om2v3 ай бұрын

    maybe you should try and make an attack tutorial and a enemy damage tutorial, other tutorials by other youtubers are way worse

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    I’m currently working on my next project so once I get into the enemy AI for that I may also make a tutorial or 2 covering this! I’ll see how I go though! Thanks for the suggestion

  • @fyuten
    @fyuten3 ай бұрын

    After creating the HealthManager, Border, Red and Health all turn invisble and become scripts instead of image.

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    I honestly have no idea what could have caused that, as I’ve never come across that before in my entire time using Unity 🤔

  • @fyuten
    @fyuten3 ай бұрын

    @@JakeMakesGames Yeah my uni professor has no idea either.. :)

  • @hellopeople2395
    @hellopeople23953 ай бұрын

    Nice video but you may want to include if( healthamount < 100) { healthamount = 100; } to prevent people gaining ghost health :)

  • @JakeMakesGames
    @JakeMakesGames3 ай бұрын

    Good point, thank you for that!