How to Pick Up + Hold Objects in Unity (FPS)

Поділитися
Вставка
  • Опубліковано 14 лип 2024
  • In this video I show how to pick up, rotate, and throw objects in Unity.
    CODE (YES YOU HAVE PERMISSION TO USE IT):
    github.com/JonDevTutorial/Pic...

КОМЕНТАРІ • 88

  • @Vorkandor
    @Vorkandor 6 днів тому +1

    For anyone else who has trouble with this:
    1. Make sure to either name everything the same as Jon does or to rename them in the script file to what you've used.
    2. By default the keys are 'E' to pick up/drop, hold 'R' and move mouse to rotate, and 'Left Click' to throw. This can be changed in the script.
    3. Make sure the object you're picking up has a box collider and a rigidbody component.
    4. Make sure on your camera (where you added the script) that 'Player' is set to the parent file of your camera movement.
    Hopefully, that helps some of you out. But if you're still stuck don't bother asking me for help. I just started learning Unity today, so idk lol.

  • @kiryrumirz1615
    @kiryrumirz1615 Рік тому +1

    I loved it completely, and the memes sajkdsakljd so good, hope to see more of your tutorials soon!

  • @josemanuel5205
    @josemanuel5205 Рік тому +2

    Loved the tutorial, keep up the good work

  • @mdmushiransari2676
    @mdmushiransari2676 Рік тому +2

    Thanks!!!! it is easy to implement and can be easily extended

  • @SleepyMatt-zzz
    @SleepyMatt-zzz 8 місяців тому +7

    For anyone struggling to figure out how to reference another script, I used a video by Game Dev Beginner "How to get a variable from another script in Unity (the right way)" to figure it out.
    Thank you Jon for this helpful tutorial.

    • @itsjustangel4544
      @itsjustangel4544 8 місяців тому +3

      hey I'm a beginner can. I watched the vid but I'm still confused on how to properly reference a script with in another? Can you tell me what code you put?

    • @SleepyMatt-zzz
      @SleepyMatt-zzz 8 місяців тому

      @@itsjustangel4544 I will try my best to remember what I did to the best of my ability. This won't be something you will be able to simply copy & paste:
      1. first, in your FPS/Player controller script, you want to make the variables that control the mouse sensitivity is public,
      e.g.
      public float lookSpeedX = 2.0f;
      public float lookSpeedY = 2.0f;
      2. Second, make whatever function that moves your camera is also Public,
      e.g.
      public void HandleMouseLook()
      3. From here on we will make our way back to our PickUPScript, and similar to what the end of this video demonstrates, you want to declare the FPS controller script at the bottom of the section of the PickUpScript where you have declared your other public/private floats and bool variables.
      This is just telling the system that another script is going to be referenced.
      Simply call the script you want to reference and assign it a name.
      e.g.
      FPSController mouseLookScript;
      "FPSController" is the script I am referencing, and mouseLookScript is the name I have given it to declare it.
      4. Now go to Void Start(), use the named variable we are going to use to reference the FPS controller,
      e.g.
      void Start()
      {
      LayerNumber = LayerMask.NameToLayer("holdLayer");
      mouseLookScript = player.GetComponent();
      }
      The variable we gave a name to will now be able to call the FPSController script we are using for our intended purposes. The section of this line that uses the "" characters is annotating what script we are referencing when called.
      5. Now go below into our Void RotateObject() function, and inside the IF statement that calls for our rotate object input, use the reference variable we created to call the variables we made public earlier that controls the mouse sensitivity,
      e.g.
      if (Input.GetKey(KeyCode.Mouse2))
      {
      canDrop = false;
      //disable player being able to look around
      mouseLookScript.lookSpeedX = 0f;
      mouseLookScript.lookSpeedY = 0f;
      Here we are calling the variable we created to reference the fpsController script, and we are calling the variable from our fpsController that controls our camera sensitivity.
      the reason why we are setting both lines to 0 is because this is where we are freezing the camera when we press our desired input (I set mine to Mouse2/middle mouse button).
      6. Now we go below to our else command where our "canDrop" command is and type the same lines we just used above,
      e.g.
      else
      {
      //re-enable player being able to look around
      mouseLookScript.lookSpeedX = 2.0f;
      mouseLookScript.lookSpeedY = 2.0f;
      canDrop = true;
      }
      Just make sure to type the default camera sensitivity value is the same as the fpsController script we are referencing, which will re-enable the camera to move.
      That is all I can remember off the top of my head, hope this helps. I'm sure there is a better way of doing this, but I'm still an amateur.
      The Fps controller I am using is based on code created by Comp-3 Interactive.

    • @-jxvi
      @-jxvi Місяць тому

      What code did you use?

  • @arinwald
    @arinwald Рік тому

    Man, you are a King

  • @JWoods456
    @JWoods456 6 місяців тому

    Absolute Legend, Thank you

  • @hemanarthanamaly4810
    @hemanarthanamaly4810 Рік тому +3

    NO WAY YOU ARE NEW , i want you to be the new brackeys because editing , commentary and tutorials like this are GOLDEN.

  • @metaDeWeta
    @metaDeWeta 6 місяців тому

    Very good, thank you so much!!

  • @ilikepieandgames
    @ilikepieandgames 2 роки тому +7

    Sorry but how does this video only have 60 views when its the best method of doing this I've found

  • @saltyorangejuice1010
    @saltyorangejuice1010 Рік тому

    Best tutorial

  • @davidgil1171
    @davidgil1171 2 роки тому +1

    Man this is so gooood! Can u do a tutorial on an Inventory System?

  • @thewall694
    @thewall694 7 місяців тому

    amazing, dude

  • @Bombastic1726
    @Bombastic1726 Рік тому +1

    Thank you so much

  • @Dev_Roids
    @Dev_Roids 7 місяців тому

    Thanks so much!

  • @dssolve
    @dssolve 6 місяців тому

    Make sure that the "Static" checkbox is not ticked in the Inspector at the top right corner. Some objects have this ticked by default

  • @Blend.mpeg4
    @Blend.mpeg4 Рік тому

    Лучший

  • @skylarl.4571
    @skylarl.4571 3 місяці тому

    hi! thank you so much for the tutorial! i'm a bit confused on how to lock the background lookaround rotation while you're rotating the item. could you advise on this? thanks!

  • @mr_gogo_baybe
    @mr_gogo_baybe 14 днів тому

    thx

  • @vuxenn
    @vuxenn 3 місяці тому

    I loved your tutorial and script it's so useful and great. But i've a question:
    I want my pickable objects to be affected by my post process which is in my main camera object. How can i do that?

  • @kingdom216
    @kingdom216 Рік тому +1

    how does the script change when using third person and player input system?

  • @pietrosprudente
    @pietrosprudente 6 місяців тому +1

    This is for anyone who wants to rotate the object to world space!
    Replace this:
    heldObj.transform.Rotate(Vector3.down, XaxisRotation);
    heldObj.transform.Rotate(Vector3.right, YaxisRotation);
    With this:
    heldObj.transform.Rotate(Vector3.down, XaxisRotation, Space.World);
    heldObj.transform.Rotate(Vector3.right, YaxisRotation, Space.World);
    Hope this helps! 🧀🧀

  • @yesimhairy
    @yesimhairy Рік тому +1

    Hello, great tutorial. I will definitely use it in the future! One concern I do have is if your rendering the object above everything, doesn't that mean that you can see it through walls? Sorry if the answers obvious but I haven't used this system yet. Thanks

    • @jondevtutorials4787
      @jondevtutorials4787  Рік тому +4

      Hey thanks for the nice comment. The layer gets rendered above everything, and since we only assign the object to that layer when we are holding it, the object doesn't appear through walls when it is on the ground.

    • @yesimhairy
      @yesimhairy Рік тому +1

      @@jondevtutorials4787 Thanks for letting me know :)

  • @aminnekarlsson
    @aminnekarlsson Рік тому +1

    Great tutorial! I've implemented the script and managed to get it working. But when I pick up and throw the object, the scaling of the object change. How can i fix this. And my camera also rotates when rotating the object, is there any way to fix that?

  • @bennysensei4662
    @bennysensei4662 4 місяці тому

    Im a newbie of that. What is ur template you using? 3D, VR core, or something? Thanks

  • @huguesdepayens9558
    @huguesdepayens9558 Рік тому +3

    This is nice because the object doesn't move when it hits walls

  • @mug4621
    @mug4621 11 місяців тому

    hello how can ı use this when using urp ? do i just turn the broject into urp _?

  • @backroomsarchives4628
    @backroomsarchives4628 Рік тому

    hello, i have some problem, the script works until i take the object in my hand, as soon as i press E and the game pauses

  • @onlyrxtro7059
    @onlyrxtro7059 17 днів тому

    Is it a way to make it to where only I can pick it up and nobody else able to touch it even when I drop it

  • @Ninethemeerkat
    @Ninethemeerkat 9 днів тому

    Great video, but I do have one problem. Every time I try to pick up the sphere I want to pick up, nothing happens. I have it on the right tag, but on the default layer. When I try to put it on the Hold layer, it can be seen through walls. Any way these can be fixed?

  • @duraeman2893
    @duraeman2893 8 місяців тому +1

    i can see the object through walls, how can i fix this?

  • @fmmstitchvr730
    @fmmstitchvr730 25 днів тому

    witch button is it to pick up

  • @bubble12
    @bubble12 Рік тому

    i got this error, pls help. (A game object can only be in one layer. The layer needs to be in the range [0...31])

  • @TooOldForML
    @TooOldForML Рік тому +3

    Thank you! This worked great and was easy to implement.
    Edit: Got it working how I wanted :)

  • @krunchyfps
    @krunchyfps Місяць тому +1

    Please help. It says the name "Pickable" does not exist in the current context. The name of my Layer is Pickable.

  • @Harharharisstibky
    @Harharharisstibky Рік тому +2

    hey man i want to ask is it ok if i put your yt user in the credits for the game im working on? thanks

  • @kage8969
    @kage8969 Рік тому +1

    So, I didn't necessarily have an issue with adding the code to my player but when I go up to an object that has the "canPickUp" tag it does nothing.

  • @DEV_herrington123
    @DEV_herrington123 27 днів тому

    hey man your script is work but i dont know how to throwing the object you have solution

  • @sushilord4865
    @sushilord4865 Рік тому +1

    Unsure if you're still responding to comments or not but I have a slight problem. Picking up items is fine at first but for some reason after a bit it is a pain to pick up items. There's like a 90% chance the object cant be picked up and it gets very annoying. Any fixes? I'm using mesh colliders if that helps!

    • @BjornBrnk
      @BjornBrnk 3 місяці тому

      Remove the mesh collider

  • @_Leaf53
    @_Leaf53 5 місяців тому

    If anyone knows, why does the object teleport underneath my player when i drop it?

  • @affenkratzer
    @affenkratzer 2 місяці тому

    does someone know why my cube streches after picking it up?

  • @bigdong7505
    @bigdong7505 2 місяці тому

    idk why but all of the things i tested keeps resizing when i'm holding them and move my camera

  • @someguy9163
    @someguy9163 Місяць тому

    also what is ECM it have an error

  • @elcolgaodeturno485
    @elcolgaodeturno485 Рік тому +1

    Hi, i knwo this video is old but i'm trying to use your code. I have a weird problem. When i pick up an object his scale changes. Making more big or more little. Any idea whats happening?

    • @nikolaandric8041
      @nikolaandric8041 3 місяці тому

      same problem, did you fix it

    • @-panda-8105
      @-panda-8105 23 дні тому

      I don't know if it's still relevant, but if the size of the Player model is different, this happens. So, if you set the player transform to 1,1,1, it will be fine. (It helped me)

  • @jankystreams3337
    @jankystreams3337 Рік тому

    Hey, awesome video. I have a problem when picking up the item. I have a post process volume on my main camera, but when I pick up the item the effect doesn't apply onto the item until I drop it. I tried putting a volume on the other camera also, but it doesn't work still. Solutions??
    Edit: Also, it clips through the map frequently.

    • @jondevtutorials4787
      @jondevtutorials4787  Рік тому +1

      Post process effects act on layers, you should have the option to select/add layers in the inspector for the post processing effect. As for the fact that it clips through the map, I think there is a StopClipping() func. that you may want to look at which tries to stop the the object from being placed through colliders. It's at the very bottom of the code, try editing the last few lines to your spec.

    • @jankystreams3337
      @jankystreams3337 Рік тому

      @@jondevtutorials4787 Thanks!

  • @lennienicolelorenzo4212
    @lennienicolelorenzo4212 Місяць тому

    hI, can someone help me pls every time I try to click the "E" to pick up the object it doesn't do anything.

  • @hollowsnest518
    @hollowsnest518 8 місяців тому

    I keep getting a layer error saying A game object can only be in one layer. The layer needs to be in the range [0...31] someone please help me rah

  • @user-ly7vp5ng2z
    @user-ly7vp5ng2z 8 днів тому

    how can i do this in urp? there is no clearflags :(

  • @someguy9163
    @someguy9163 Місяць тому

    pls help me i use the urp not the normal one pls help :(

  • @summerwheels
    @summerwheels Місяць тому

    why cant i pick up anythinggggg, i try to follow these tutoirals but nothing works

  • @othmanmoat
    @othmanmoat 7 місяців тому

    Hey has anyone figured this out in URP?

  • @KikiKilo
    @KikiKilo 3 місяці тому +1

    When I click play, the object I want to pick up is just gone

    • @Tako874
      @Tako874 2 місяці тому

      Have you moved around, picking up an object with this code near a wall makes it clip into the wall, if you still don’t see it, it might be the layers

  • @pebbleshmebble8142
    @pebbleshmebble8142 Рік тому +1

    my cube disappears when I press E. Can you please help

  • @MedicMainDave
    @MedicMainDave Рік тому +2

    I'd have one suggestion. Use Interfaces instead of Tag, it's just better overall :P

  • @huguesdepayens9558
    @huguesdepayens9558 Рік тому

    How come when I throw it at the floor, it goes through the floor?

  • @HiHoSHOW
    @HiHoSHOW 2 роки тому +1

    I don't have clear Flags and depth option in my camera inspector!

    • @jondevtutorials4787
      @jondevtutorials4787  2 роки тому

      Are you using URP perhaps? If not that can you tell me what version of unity you are running?

    • @HiHoSHOW
      @HiHoSHOW 2 роки тому

      @@jondevtutorials4787 yes I was using it and I turned it off and now I have them. But there is another issue with the code. When I pick up a cube for example and look around the cube changes its scale. Why is this happening?

    • @HiHoSHOW
      @HiHoSHOW Рік тому

      @@jondevtutorials4787 I'm facing a weird issue sometimes when I throw an object, it doesn't always gets thrown forward. sometimes towards the player itself.

    • @jondevtutorials4787
      @jondevtutorials4787  Рік тому

      @@HiHoSHOW perhaps the player is blocking, try changing the point where it is being thrown from. Else check how direction is being calculated in the addforce method, perhaps you are using worldspace not local space.

    • @ilhamnarendra770
      @ilhamnarendra770 11 місяців тому

      @@jondevtutorials4787 i use urp, 2022.3. and i didnt have those two. and now my object is invisible when i picked it up.., any solution??

  • @williammason1938
    @williammason1938 6 місяців тому

    it dont work for me
    :/

  • @GGC4D
    @GGC4D Рік тому

    Can you make a version of this to be mobile friendly?
    Like for example.
    Edit this script so then it can work for say making a mobile game

  • @ilhamnarendra770
    @ilhamnarendra770 11 місяців тому

    can someone help me.., it doesnt work??
    edit : i use urp and some things change with the camera. but i dont know why i cant pick up the object. i already assigned the tags and all the stuff, checked several times and i dont seem to find the problem why.
    2nd edit = i figured it out, turns out it needed rigidbody. but now the object is invisible when its picked up. any solution??

    • @Handvr
      @Handvr 7 місяців тому

      me too!

  • @JimmyFireZOnYT
    @JimmyFireZOnYT 8 місяців тому

    The throw doesn’t work and now the cube is on my camera, forever

  • @lazikbro12
    @lazikbro12 Рік тому

    it doesnt work when i click e

  • @RealEngineerGaming
    @RealEngineerGaming Місяць тому

    This tutorial isnt working for me. It might be because I dont know how to reference my FPS script, but none of this actually works for me, man. Its always these seemingly easy tutorials that are the most complex. Or maybe im just stupid

  • @hemanarthanamaly4810
    @hemanarthanamaly4810 Рік тому

    you have discord man? i dont wanna forget you