Це відео не доступне.
Перепрошуємо.

How to Talk to NPCs! (or Interact with any Object, Open Doors, Push Buttons, Unity Tutorial)

Поділитися
Вставка
  • Опубліковано 30 лип 2024
  • ✅ Get the Project files unitycodemonkey.com/video.php...
    🌍 Get my Complete Courses! ✅ unitycodemonkey.com/courses
    👍 Learn to make awesome games step-by-step from start to finish.
    👇 Click on Show More
    🎮 Get my Steam Games unitycodemonkey.com/gamebundle
    POLYGON - City Pack cmonkey.co/synty_city_talknpcs
    POLYGON - Heist Pack cmonkey.co/synty_heist_talknpcs
    Basic Motions Animations assetstore.unity.com/packages...
    🔴 RELATED VIDEOS 🔴
    Why you should NOT make everything PUBLIC! • Why you should NOT mak...
    Simple Chat Bubble in Unity! (Chat, NPC, Multiplayer) • Simple Chat Bubble in ...
    Kickstart your game with First and Third Person Controllers! (FREE Unity Starter Assets) • Kickstart your game wi...
    Make your Animations DYNAMIC with Animation Rigging! • Make your Animations D...
    SMOOTH with LERP! (Move, Rotate, Float) • SMOOTH with LERP! (Mov...
    What are Interfaces? (C# Basics) • What are Interfaces? (...
    💬 Learn How to Talk with NPCs, approach them, press a button and trigger a conversation.
    Although this exact logic works for really interacting with any object, not just talking with NPCs
    So I will also showcase how to use a nice C# interface to make this system work with any object and specifically showcase it working to Press a Button and Open a Door.
    📝 Some Links are Affiliate links which means it costs the same to you and I get a nice commission.
    🌍 Get Code Monkey on Steam!
    👍 Interactive Tutorials, Complete Games and More!
    ✅ store.steampowered.com/app/12...
    If you have any questions post them in the comments and I'll do my best to answer them.
    🔔 Subscribe for more Unity Tutorials / @codemonkeyunity
    See you next time!
    📍 Support on Patreon / unitycodemonkey
    🎮 Grab the Game Bundle at unitycodemonkey.com/gameBundl...
    📝 Get the Code Monkey Utilities at unitycodemonkey.com/utils.php
    #unitytutorial #unity3d #gamedev
    --------------------------------------------------------------------
    Hello and Welcome!
    I'm your Code Monkey and here you will learn everything about Game Development in Unity using C#.
    I've been developing games for several years with 8 published games on Steam and now I'm sharing my knowledge to help you on your own game development journey.
    I do Unity Tutorials on just about every topic, Unity Tutorials for Beginners and Unity Tutorials for Advanced users.
    You can see my games at www.endlessloopstudios.com
    --------------------------------------------------------------------
    - Other great Unity channels:
    Unity - / unity3d
    Brackeys - / brackeys
    Dani - / @danidev
    Jabrils - / @jabrils
    BlackthornProd - / @blackthornprod
    Sykoo - / sykootv
    Jason Weimann - / @unity3dcollege
    Jonas Tyroller - / @jonastyroller
    --------------------------------------------------------------------
    - Website: unitycodemonkey.com/
    - Twitter: / unitycodemonkey
    - Steam: store.steampowered.com/develo...

КОМЕНТАРІ • 255

  • @CodeMonkeyUnity
    @CodeMonkeyUnity  Рік тому +7

    ✅ Get the Project files unitycodemonkey.com/video.php?v=LdoImzaY6M4
    🌍 Get my Complete Courses! ✅ unitycodemonkey.com/courses
    👍 Learn to make awesome games step-by-step from start to finish.
    👇 Click on Show More
    🎮 Get my Steam Games unitycodemonkey.com/gamebundle
    POLYGON - City Pack cmonkey.co/synty_city_talknpcs
    POLYGON - Heist Pack cmonkey.co/synty_heist_talknpcs
    Basic Motions Animations assetstore.unity.com/packages/3d/animations/basic-motions-157744?aid=1101l96nj&pubref=talktonpcs
    🔴 RELATED VIDEOS 🔴
    Why you should NOT make everything PUBLIC! ua-cam.com/video/pD27YuJG3L8/v-deo.html
    Simple Chat Bubble in Unity! (Chat, NPC, Multiplayer) ua-cam.com/video/K13WnNL1OYM/v-deo.html
    Kickstart your game with First and Third Person Controllers! (FREE Unity Starter Assets) ua-cam.com/video/jXz5b_9z0Bc/v-deo.html
    Make your Animations DYNAMIC with Animation Rigging! ua-cam.com/video/LEwYmFT3xDk/v-deo.html
    SMOOTH with LERP! (Move, Rotate, Float) ua-cam.com/video/jAN2IoWdPzM/v-deo.html
    What are Interfaces? (C# Basics) ua-cam.com/video/MZOrGXk4XFI/v-deo.html

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

      Can i use your Project file in my project for commercial purposes

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

      Can u do the same tuto but using raycast
      Its because its better when using raycast i hope u see this comment and do tuto pls

    • @dkordy
      @dkordy 10 місяців тому

      PLEASE ANSWER ME ! why do I keep getting this error message in the console -ArgumentException: The Object you want to instantiate is null.
      UnityEngine.Object.Instantiate[T] (T original) (at :0)
      GamePrefabAssets.get_i () (at Assets/Asset_Game/Test_Stuff/ChatBubble/GamePrefabAssets.cs:16)
      ChatBubble.Create (UnityEngine.Transform parent, UnityEngine.Vector3 localPosition, ChatBubble+IconType iconType, System.String text) (at Assets/Asset_Game/Test_Stuff/ChatBubble/ChatBubble.cs:15)
      NPCInteract.Interact () (at Assets/NPCInteract.cs:13)
      PlayerInteract.Update () (at Assets/PlayerInteract.cs:24)
      - I did everything like you 5 times, I went through all the video clips that are needed for this, created chat bubbles. However, I keep getting this message, why?

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

      I am a student software engineer which is doing a game dev course, thank you for this amazing tutorial!
      Btw I loved Blueprint Tycoon, played it a lot!

  • @GiraPrimal
    @GiraPrimal Рік тому +91

    15:55 Optimization tip for the distance checking part:
    - Vector3.Distance involves a square root in the math, which is super slow to compute. Since you're only checking which object is the closest, you can use squared distances to remove the square root and make the check faster.
    - There's no Vector3.SquaredDistance static method, however you can use (pos1 - pos2).sqrMagnitude. This returns the squared distance between pos1 and pos2.

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

      I learned the hard way about this performance tip ages ago, the workaround you posted sounds neat and I'll make sure to give this a try soon. Much obliged.

    • @slygamer01
      @slygamer01 Рік тому +11

      That was true many years ago, but now there is no real measurable difference in using Vector3.Distance compared to sqrMagnitude. See Tarodev's channel and his video "Unity Code Optimization - Do You Know Them All?"

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

      @@slygamer01 I just checked that passage. Interesting...!

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

      @@slygamer01 I read something similar when I was looking through this yesterday, as I figured the best way to optimize Distance would be to settle for the Q3 Fast Inverse Square Root function. What I found was a few measurements showing that the difference was negligible, as well as the usual smug nonsense of a Unity forum war. It proved to be rather amusing up until it wasn't.

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

      I was having performance issues but this fixed my problem thanks a lot

  • @Spridonculous
    @Spridonculous Рік тому +6

    Oh man, I was stumbling my way through basically this very thing, but started with object interaction and was going to use it as the base for my NPC conversations. But then you come along and show off the right way to do it. Thanks! Now I get to go fix everything I did wrong.

  • @ewwitsantonio
    @ewwitsantonio Рік тому +9

    Excellent video! Covered some great topics, demonstrated them in a clear and thorough manner, and the visuals and initial setup of the project are beyond the normal tutorial grade. Great work :)

  • @kevinmatthews6369
    @kevinmatthews6369 Рік тому +5

    Fantastic teaching. I've watched enough of your videos to anticipate we'd get to interfaces, but buildup (showing the scaling issues and the solution) is a fantastic teaching method.

  • @petersaup
    @petersaup Рік тому +5

    I really must be getting better at this coding thing because the whole video I was like, "This code is neither nice or clean, why isn't he using an interface!" You got me good CM! Cheers!

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

    I don't know how you do it, but as soon as I need something, you immediately release a video on this topic, thank you!

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

    Great tutorial ... very clear, neat and detailed at the same time.

  • @hypercharge26
    @hypercharge26 Рік тому +40

    Exactly when I am stuck on a point, code monkey comes from heaven to save me. Thank you so much CM!!

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

      lol, same

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

      Conspiracy: Code Monkey is an angel of knowledge, set to test humanity's willingness to pursue knowledge. Part of a way he tests is to remove the "I don't know what to do next" excuse by always providing ways as the needs arise.

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

    Loving the vids and how you break down the logic for further additions and improvements. I'd be keen to see you possibly do a tutorial on an Anno style system with automated NPC pathfinding to new buildings / task finding etc - Unless you have something similar already

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

      For recalculating path you would probably just have the Pathfinding system fire off an event when the pathfinding map changes (like when a new building/road is placed) then have the unit listen to that event and request a new path.
      I made a nice Task System a long time ago which I used in my game Battle Royale Tycoon unitycodemonkey.com/video.php?v=rQXr9XTu6CI

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

    I had ideas on how this would be done but this will be a great skill to have for multiple uses. thanks for this

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

    Quality of your video has improved a lot since I last visited sometime ago. Keep it up:)

  • @user-do3pd1sk6c
    @user-do3pd1sk6c Рік тому

    I actually encountered this problem many times in the past. What I think is a good solution is making an npc component which inherits an interactable interface. Your solution is great too and I really enjoyed the video. Keep it up

    • @user-do3pd1sk6c
      @user-do3pd1sk6c Рік тому

      Plus it also supports every interactable object with only one line of code

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

    After a long time I came to see video I was busy . I was studying web development. Again awesome video .

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

    your voice and the way u talk makes me smile.

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

    At the beginning of the video, I immediately thought about interfaces and was surprised that you ignored them... but in the end you corrected yourself... And by the way, your explanation of interfaces for beginners is impeccable )

  • @r.gtz.4521
    @r.gtz.4521 Рік тому

    Hey Codemonkey. So this was one of the hardest problems I've ever had to figure out and I succeeded without the physics.overlap function. I did run into it during research but failed to see how I could effectively use it. I see now how useful it would have been in my situation, I might still go back and swap my method for yours if it becomes too unweildy. I ended up adding an interact script to every interactable item which then each tracks the distance from itself to the player so it knows when to pop up the UI banner. I will definitely use this video as reference, there is hardly anything out there on this subject, thank you.

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

      That approach is less efficient but depending on how many Interactable objects you have it might not necessarily be a problem. If you come across performance issues in the future then that could be an easy way to get a few more fps

  • @mehow.
    @mehow. Рік тому +1

    I got really scared after seeing the solution without an interface, thinking that this would be your final proposal :) great tutorial!

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

    I always find your tutorials useful and helpful. and as usual clean expandable code.

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

      I'm glad the videos have helped you! Thanks!

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

    Finally, this is what all i need.
    Thank you

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

    I really like your No code Course in Unity, you could create new one with updates and maybe new genres if you have time in the future, I would 100% buy it!

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

    Minor optimization, but you could do your distance check and setting of the nearest interactable where you are adding to the list instead. Love the video, have a similar setup in the game I'm working on.
    public interface IInteractableObject
    {
    public string getLookAtText(NetworkIdentity onlooker);
    public void useObject(NetworkIdentity onlooker);
    public bool isInteractable();
    }

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

    Another great video! 😆👍 I'm really enjoying your tutorials...
    *BUT!*
    It would be really helpful if you could add some kind of Anotation overlay during editing, that labels which C# Script you're editing on screen... it's kind of hard to keep track of that while you're flipping back and fourth between the different ones. 💛👍

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

      I do leave the top bar visible with the file list so you can see that and I try to mention it with voice but yea sometimes I forget

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

    Dude your tutoriales are VERY good and informative. My only problem now is deciding which of the like 7 ideas I have for games I should start making into a complete one lol

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

      That is always a tricky problem! I myself also have hundreds of ideas for games/videos but not enough time to do them all at once!

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

      I found myself in a similar situation earlier. For me I decided to make the easiest of them first. So I can finish it move on to the next.But in my case the second and maybe even the third idea is like an extension of the first so i can reuse and repurpose a lot of it. you could say they happen in the same universe or whaterver. If i will finish any of it is yet to be decided.. lol.
      You could also approach it in way like "which game benefits you the most?"

  • @jean-michel.houbre
    @jean-michel.houbre Рік тому +1

    Nice and clean, nothing to report!

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

    Awesome! Please do a tutorial where character jumps over objects with animations(like small wall, ledge) and cover system like in GTA V. No other youtuber did a high quality tutorial on this matter

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

      How did it go? Made flappy bird HD yet?

  • @Thomas-qc2dc
    @Thomas-qc2dc Рік тому +1

    This is very helpful!

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

    This tutorial is awesome !!!!!🤘🤘🤘

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

    Hey Code Monkey, love the tutorials! Do you have a tutorial you made or a recommended tutorial for building a Dialogue System? More specifically, a fully functional Dialogue System for dialogue between characters, narrative story and what not.

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

      Hmm the only thing on that topic that I've covered was a simple TextWriter unitycodemonkey.com/video.php?v=ZVh4nH8Mayg
      For that kind of system you could probably store all that data in scriptable objects unitycodemonkey.com/video.php?v=7jxS8HIny3Q

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

    I love your videos 💞

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

    I notice you're not hiding the interaction prompt - (E) Talk with Alice - when the key is pressed. I'm assuming that will be somewhat difficult since you're using Update() to keep it showing in the first place... but hiding it when the key is pressed would be the typical UI response you see in most every game.
    I love how you showed the refactor for using an Interface then... that was a great learning opportunity for those unfamiliar with them to see the resulting value.

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

      Good point! That would depend on what you want the interaction to be like, just talk once or enable talking multiple times? Adding a simple timer to disable the game object visual/logic for half a second would be an easy way to give feedback to the player that the interaction was executed.

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

    Best video I've seen in about NPCs on UA-cam by far, however as a very new game developer (if you can call me that), I feel you should have made the video tutorial without referencing code from another video. The chat bubble concept as well as the rigging concept are wonderful and amazing, however if the goal is to be easy to follow, the tutorial should 100% be independent of other skills other than the ones showed in the video. I quite frankly feel really discouraged to continue with this tutorial because it requires me to learn and apply two more unity tutorials, which are the skills and knowledge revolving around the chat bubbles and the rigging animations.
    I am at a point in the chat bubble part of the video if I should just try to ask ChatGPT to come up with a script that applied the same functionality of creating the bubble, but to avail, there's too much of a knowledge curve for it to create code that is able to do the same job. I believe that providing a minimal understanding about how the code in your video works and how it's being applied would be incredibly useful for someone who has never watched your series (me). This video is beautiful and it's the first video that gives me serious advice about how to make interactable NPCs; It would be even better if you made it so that I don't have to have pause the video just to follow another video that could take me a couple hours to really master in my head.

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

      What you just mentioned is exactly what game development is all about. You build systems on top of systems. No game is composed of just a single simple system.
      Learning how to put systems together is a necessary part of the learning process.
      But you don't need the chat bubble for the NPC interaction, the basic interaction logic does not depend on any other system.

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

      Ya I agree, I get the whole 'this is game dev' but you are also making the other one in 2d and this one is called chat bubble 3d , is it the same thing?

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

      @@paul7408 Yes, logic is usually completely independent of 2D or 3D, so yes with a few tweaks you can turn almost any 2D system/element into 3D and vice versa. unitycodemonkey.com/video.php?v=3zxTigjJr24

  • @Ninja-Dev
    @Ninja-Dev Рік тому +2

    At 24:46, instead of checking proximity to NPCs and taking the closest, this has a potential problem where you are standing between the two, closer to Alice, but are facing Bob and want to talk to Bob. In this case it will still give you the wrong interaction. I personally would calculate the angle-difference between player-forward vector and vector from player to NPC, and take the one with the smallest angle difference. (i.e. calculating in code, the answer to the question "which one am I facing?")

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

      Yup that's a good point, adding player direction into the logic would indeed make it feel more natural

    • @Ninja-Dev
      @Ninja-Dev Рік тому +1

      @@CodeMonkeyUnity Nice video though, I should have mentioned! 😃

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

    This really helped!!!

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

    I love this video and have used the system / a few variations of many times.
    A question I had, how performant is this approach if we need multiple pverlap spheres for different cases? For example, we have IInteractable. How about we add another 4 or 5 interfaces, like ITargetable for enemies for example? Would this tank performance?

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

    Thank you so much, this will be super helpful for our project. Is it okay if we use parts of this code in our project, its for a school project?
    Have a wonderful day and thanks for everything you do for the community!

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

      Yup feel free to use any of the code in the videos/utilities in your own projects, free or commercial.
      Thanks!

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

    You are a saint sir!❤

  • @mediamermaid333
    @mediamermaid333 10 місяців тому +1

    Thank you!!

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

    ahem......... **GENERAL KENOBI**

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

    Thanks for the video CM! I've noticed that here you use OverlapSphere, but in other videos you've used a spherical Raycast. Which is better? Is there one that is more performant?

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  5 місяців тому +1

      It depends if you want the virtual sphere to move or not. OverlapSphere tests on a single point, SphereCast "moves" that virtual sphere and tests all collisions along the way.
      If you use SphereCast with a distance of 0 then it behaves just like OverlapSphere, I believe both end up the same in terms of performance.

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

    Well, We created IInteractable made an abstraction between. But still we have unnecessary Transform parameter inside Button & Door. What if we need 2 parameters inside an interactable, are we going to extend that Interact function inside IInteractable? How would you approach to that

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

    Thank you 🙏

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

    Greetings, Code Monkey. I have a question, is the ChatBubble3D needs to be imported to the project as it was made in your previous video?

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

      I changed some things to make it work in 3D, mainly I just added a 3D cube behind it so it didn't cause issues with the Depth of Field effect.

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

    How could we do that with two-sided? For example, we have different interactable objects & but our character will react differently for every object he interacts. Should i pass Interactor inside Interact method in Interactable, and reach the methods like; OnInteractPolice(); inside Interactor?
    This means we have to create all the methods for every interaction we do right? How would approach to that problem; We interact different objects, our character reacts different every object it interacts.

  • @LotionSoronarr
    @LotionSoronarr 4 дні тому

    I find 2 better methods for getting interactables - either a box collider placed in front of the player and chekcing for it's collision with an interractable OR placing a empty game object in front of the player and using that as the center of hte spehere/box check. That way you will allways get back only the interactables right in front of you, so there is no need to a distance check.
    That said, I cannot get the chat box to work, it's not facing the player and it's horribly oversized, so obviously it needs to be modified to work in 3D, as your tutorial is for a 2D one.

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

    Thanks!

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

    I'm using a raycast in my game to detect interactive objects etc in my game (from the player camera to the interactive object). I love you approach to interact with objects, but which one do you reckon is more optimized?

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

      It depends if you want to interact with the object only when looking at it or based on proximity, I used that method in the Pick Up Items system unitycodemonkey.com/video.php?v=_aC3NVIQ-ok

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

    Thnx ❤

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

    Cool theme for tutorial! Thank you again!
    Did you think, what would be if you need to pass more parameters to the IIneractable.Interact method, rather than the only Transform parameter? For example, if different types of interactables has it's own set of parameters, that they need in Ineract method? Generally seaking, you are already have DoorInteractable and ButtonInteractable, that needs a different set of parameters in Interact method - they both needs no parameters, but Transform is there.. a little bit confusing, because Door and Button become dependent of what they are don't need at all.

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

      You can make an InteractParameters class and include that in the Interact(); function
      Then extend that class for specific interactions.
      So the DoorInteractable class has a DoorInteractParameters : InteractParameters
      And in the DoorInteractable.Interact(); you receive InteractParameters and cast it to DoorInteractParameters and then you have access to whatever parameters you want.
      That's exactly what I'm doing in the game that I'm currently working on that has lots of objects that need to be interacted with and some of them need extra parameters, like the crafting station needs to know which inventory to grab the items from. unitycodemonkey.com/video.php?v=kcsHQbzZaA4

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

      You are right, I didn't watch this video yet. But if so, then you have to know what exactly intractable you are calling to create a certain type of parameter. And there will be a switch statement, or reflection, or chain of responsibility pattern, or something else.

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

      ​@@antonorlov8838 You ask the object to get the ActionParams needed for that object. So every class that implements IInteractable also implements GetActionParams() and returns the specific type required to interact with that specific object.

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

      @@CodeMonkeyUnity Can you explain a bit more about the last comment you 've made Code Monkey? Lets assume we are calling IInteractable.Interact(InteractParameters params)
      We still need to know about the object to pass some parameters inside Interactor. This has been an ultimate problem for me couldn't escape from switch cases. I would be really appreciated to know this more.

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

    Code monkey I appreciate your work please and please their lots of videos on making multiplayer lobby, in game inventory and shop system.
    But if you try to search for shop system for multiplayer in start menu there's non like I don't want to make RPG I just wanna make a game where my players are able to buy characters (cars) and enter game with that character (car) but I don't how to please make a tutorial about it I'm making a multiplayer car race game I want players to buy cars and equip it then enter game with it, please (using netcode or photon)

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

    Hey Man, Lovin the tutorial so far, have learnt alot about different function in code. However ive ran into a small issue, i cannot get any console output of displaying the colliders in a scene and getting the "Interact!" message to appear in the console. ive been following this tutorial for buttons do u possibly know why?

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

      Maybe you didn't add a collider to the objects, maybe they're not on the right layer, maybe you didn't assign the layer in the layer mask, maybe your raycast isn't using the correct parameters. Check each of those individually.
      Alternatively download the project files and compare with your own

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

    what is more performant: running something like Physics.OverlapSphere in update, or to have an instantiated, invisible, sphere gameobject checking collision?

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

      I haven't done any tests but they should be pretty much the same. Although with manually calling OverlapSphere you can also limit how many times you run it if you have performance issues. If the player isn't moving insanely fast you can just test about 10 times per second instead of every single Update

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

    Thank you very much for the great video!
    One question: what if I have some objects, that have different amount of actions (door - just open/close (1 action), but laptop - play, search, write email (3 actions)). How can I extend the existing logic to achieve this?

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

      You could implement a function called GetInteractActions(); on the interface, that function would return a InteractAction[] where each InteractAction holds some kind of string actionName; and Action logicAction;
      Then modify the UI to get all the actions and show them to the player, depending on player input you run each of those actions.

  • @Benny-st6zi
    @Benny-st6zi Рік тому +2

    Why did you use Physics.CheckSphere and not a collider trigger? Are there any disadvantages?

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

      Mainly just personal preference, adding a trigger collider on top of the player game object would indeed also work.

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

    Hey! I expected using a ray- or spherecast instead of physics overlap. Can you explain why you use one over another?

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

      SphereCast involves movement where the "virtual Sphere" moves in some direction and tests for all the objects it hits.
      Whereas OverlapSphere simply tests for all objects within range of that position.
      Basically a OverlapSphere works the same as a SphereCast with 0 distance, so if you don't need movement just use OverlapSphere

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

    Nice video!
    I noticed that you always when you opened a new C# script delete the start and update method. Did you know that you are able to modify the Script Templates that Unity uses? So you can just edit these files and delete the two methods and every time you create a new C# script the new script won't have them. You just have to edit the file %EDITOR_PATH%\Data\Resources\ScriptTemplates\81-C# Script-NewBehaviourScript.cs.

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

      This to should be under every video. Newbies won't do this. But they will get used to removing junk from scripts.

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

      Yeah I know that option exists but if I do that then it might confuse some people as to why when I do "create new C# script" the result is different from what they see.
      So because of that I just leave it as the default even though yeah I always delete it pretty much automatically.

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

    Amazing tutorial! I have a question... What is there any difference between an abstract class and Interfaces? If I use inheritance instead of Interface, would it make an actual difference or would it be the same?

    • @jean-michel.houbre
      @jean-michel.houbre Рік тому

      Good evening,
      we could create an abstract class with a virtual Interact() method, overloaded in the different child classes.
      The difficulty is to find a parent class that has as children a door, a button, characters, and potentially lots of objects.
      The interface avoids this problem.

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

      @@jean-michel.houbre Another limitation related to the language: a given class can inherit only from one class at a time (abstract or not), but you can implement as many interfaces as you want.

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

      Yeah, as they said, you implement all the interfaces, but just one base class. On the other hand, interfaces cannot be serialised. You won't be able to have a serialised list of IInteractiables or something else in the editor. That's sad. Sometimes you'd like to be able. And then you start using Odin serialiser and turn to that dark side. )))

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

      You can only inherit from a single base class whereas you can implement as many interfaces as you want.
      So if your NPC had a base Person class you could not inherit from both Person and Interactable

  • @user-ef4yx3mu2q
    @user-ef4yx3mu2q Рік тому

    Better to add a check for the camera frustum, just to eliminate the cases when objects are behind.

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

      Good tip! Could be done like I did the Backstab mechanic unitycodemonkey.com/video.php?v=78J493qWfDI

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

    Excelent video, but if i want to operate a cannon or control a seering wheel of a ship how do i dot it with interactions in an fps game?

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  7 місяців тому +1

      When you trigger the interaction you would open up come kind of complex UI that contains buttons/sliders for all those actions

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

    I made a similar setup but with "InteractableItem" being a class derived from monobehaviour with "virtual void Interact()" method and other interactable item classes being inherited from the "InteractableItem" class.
    I don't know if that's the best approach or the difference bitween these two approaches.

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

      The main limitation is C# classes can only extend a single base class. So for example if your NPCs had some kind of Person base class then you couldn't extend both Person and InteractableItem
      Whereas with interfaces you can implement as many as you want so it's a more flexible approach.

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

      @@CodeMonkeyUnity Oh.. Understood... In my case there were no NPCs. Just objects you can interact with which triggers appropriate events.
      So what you saying is I can have my NPCs inherit from class "NPCclass" but it can also have inheritance from the interface "InteractableItem"..? did i get it right?

  • @dkordy
    @dkordy 10 місяців тому

    6.30m- Please answer me. How to apply that chat bubble that you made in 2D and now use it for 3D? in order to be able to see the text in the game, I have to put that text in 3D on the canvas that is set in world-space. however the text does not change at all. I do not understand? And according to you, the word after each setting for you is - simple. And as I said in one of the previous comments, nothing is simple for me when watching your videos. you are totally complicating it. Can you please explain 2d chatbubble 3d chatbubble?

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

    I love you Code Monkey

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

    I'm implementing 3d gameplay with your other course, complete multiplayer one. It seems like there you used ray but here you used collider search. Which one would you suggest me to follow? (my game is basically an fps coop)

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

      It all depends on what you're trying to do. Are you trying to find a specific exact point in the world? Use a raycast. Are you trying to find objects in an area? Use OverlapSphere

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

      @@CodeMonkeyUnity got it that sounds cool, actually maybe I should make a modul for "trying to find" things in the world. like it can do its own logic depending on what itS looking for. But I'm not there yet :D I'm still not happy with my fps controller but I'll get there

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

    Hey!CodeMonkey,I got a question,how to make two NPC say different things?

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

    AMAZIGGGGGGGGGGGG

  • @apples1054
    @apples1054 10 місяців тому

    Sorry I still don't understand how the interface mehthods work? I have watched your video on interfaces and I understand that. So how does it work like if you have 5 different food objects that you can pick up or place down? How does the interface code work?

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  10 місяців тому

      What specifically don't you understand? The interface acts like a contract, when a class implements that interface it must implement those functions, so by writing code that works with that interface it will work with any class that implements that interface unitycodemonkey.com/video.php?v=MZOrGXk4XFI

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

    There is one "off topic question" I always have when watching Unity tutorial videos: Why no one uses Visual Studio with Unity? Always you have to add Usings manually or, when you want to create an element which is NOT a Monobehaviour, you have to create a script in Unity and rewrite everything by hand. Why not using VS and create simple classes or interfaces there?

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

      I add the usings manually so that the tutorial is easy to follow, if I do it automatically with the keyboard shortcut then I would get tons of comments asking why a class does not exist because people would easily miss that and not know what they did wrong.
      Same thing for creating new files, it's easier to follow the tutorial if I do it the standard way although yes of course you could just create it directly in Visual Studio.
      So basically those two things are done solely for tutorial purposes, feel free to use shortcuts and never leave VS when working by yourself.

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

      @@CodeMonkeyUnity got ya! Thanks :)

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

    Can you make a tutorial for how to make an npc walk in random directions?

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

    A great motivator to make a code to open the door when there is such a lot of money behind it )))

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

    I downloaded the project files but the scene isn't loading properly. It's just a plane with a nonfunctional player controller. I made sure to get all of the addons. Maybe i imported it improperly?

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

      You can't rotate the player with the mouse? You can't move? Is the game running? Got any errors in the console?

  • @while.coyote
    @while.coyote Рік тому +1

    Is there a reason to use physics overlap instead of attaching a trigger to the player?

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

      Both methods would work, only difference is this does not require a separate component/gameObject and the layerMask can be used for only hitting interactable objects.

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

    thanks. i am going to use this for a map selector hub world. it should also work with raycasts i think
    Edit: it did👍

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

      Yup you could indeed just do a raycast towards the center of the screen

  • @khurum
    @khurum 10 місяців тому

    can you make a video of an interactable using unity events

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

    Hey, How do you get the lerping to work every time? it lerps the animation on the first interaction, however, after that, the head snaps to the position, should i be setting the lookAtPosition to false after it looks at the player?

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

      You mean the Animation Rigging? I don't remember if I handled the reset, basically if the Player is no longer in range you should Lerp the weight back to 0 so they go back to looking forward.

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

      @@CodeMonkeyUnity Ahh okay, I think I understand. I'm gonna have to play around with it, because I noticed it happens in your video as well. It works on the first interaction, you can see the head moving smoothly, however, every interaction after that will snap the head to the players position.

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

    I want to get an opinion on a topic. Should I use serializefield or find method to access multiple gameobjects?

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

      Depends on the context but if you want to run a specific function then make a SerializeField of that type and run the function directly on it.

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

      They say the find command is tiring for the computer, so I avoided using the find command, I was just thinking of using it in the start function when the game starts, but I wasn't sure.

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

    Do I need to buy the asset packs to follow along, or can I just use my own assets and animations?

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

      You can use this interaction system with whatever assets you want, it's not limited to any specific assets or any specific camera (2D,3D)

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

      @@CodeMonkeyUnity Thank you.

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

    I don't understand this part 12:19, I mean why are we connecting NPCInteractable? And can you explain TryGetComponent more?

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

      It tries to get the Component of that type attached to that game object. If it finds one it returns true, if not false.
      So in that case it tries to find a component of type NPCInteractable attached to any of the objects that the physics query hit. If it finds one then it calls the Interact(); function

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

    Please add subtitles if you can. Thank you for the wonderful video. :)

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

      The UA-cam auto generated captions are usually very good!

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

    Interfaces are cool, but you are still pasting the same code for interface methods to every class that implements it. If some method has to be changed, you need to paste the code again. What would be the way around this?

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

      Interfaces support a default implementation, you can implement the common parts in the interface itself and override when needed

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

      ​@@CodeMonkeyUnity Thank you for your answers.

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

    Im stuck on the Chat bubble part. im not sure how do like make the text that pops up without having the same prefab as urs

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

      I covered that in detail in this tutorial ua-cam.com/video/K13WnNL1OYM/v-deo.html

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

      @@CodeMonkeyUnity Tysm bro ur great u have the time to reply and make videos is great much respect🙌

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

    for me it says NPCInteractable could not be found am i missing something? cause im pretty sure i followed the tutorial correctly

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

      Maybe you wrote a typo in the class name? It was created at 5:08

  • @-Lola.
    @-Lola. Рік тому +1

    Any chance we could get a tutorial for this using the new input system??

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

      I covered the new input system in detail here unitycodemonkey.com/video.php?v=Yjee_e4fICc
      All the logic in this video would be exactly the same, just swap Input.GetKeyDown with the new input action

    • @-Lola.
      @-Lola. Рік тому

      @@CodeMonkeyUnity Thanks

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

      still can't seem to figure out how to use this with a button in the new input system im on mobile not pc

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

    Hi I'm in the NPC Interact part of the lecture and I ended up getting the error:
    error CS0246: The type or namespace name 'NPCInteractable' could not be found (are you missing a using directive or an assembly reference?)
    this is my code:
    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    public class PlayerInteract : MonoBehaviour
    {
    private void Update()
    { if (Input.GetKeyDown(KeyCode.E))
    {
    float interactRange = 2f;
    Collider[] colliderArray = Physics.OverlapSphere(transform.position, interactRange);
    foreach (Collider collider in colliderArray)
    {
    if (collider.TryGetComponent(out NPCInteractable npcInteractable))
    {
    npcInteractable.Interact();
    }
    }
    }
    }
    }

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

      Sounds like you didn't make an NPCInteractable script, did you name it something difference?

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

      @@CodeMonkeyUnity OHHH I gets, the script name didn't update to NPCInteractables and was just left as NpcInteractables, thank you so much lol!

  • @adris4009
    @adris4009 9 місяців тому

    In your tutorial for the chat bubble you were in 2d. I'm confused with how i can use the tutorial in this 3d project. I'm a complete beginner to coding and unity.

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  9 місяців тому

      The chat bubble is a flat element, so I just converted the canvas into a world canvas and swapped Vector2 for Vector3 unitycodemonkey.com/video.php?v=3zxTigjJr24

    • @adris4009
      @adris4009 9 місяців тому

      @@CodeMonkeyUnity Thank you!

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

    How did you implement blurry effect?? Like npc were blurry until you approached closed to them??

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

      That's Depth of Field Post Processing

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

      @@CodeMonkeyUnity thanks for the reply sir..... Got it, made that effect 😁

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

    Can you make a tutorial on how to make the player fly plz🥺

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

    24:06 not all difference. Vector3.Distance dnt work in 2D

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

    Damn, I thought this tutorial was for IRL.

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

    Can you make tutorial how to made interaction system where you need to hold e (not press) some time to interact

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

      Between key down and running that interaction, run a coroutine that will wait for key up an and measure time it took, if enough then run interaction, else cancel.

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

      @@zORg_alex thanks

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

      That would be the same logic as here in order to identify when objects are in range, but then instead of calling the function on a KeyDown you would maybe increase some float timer while the key was held down and trigger the interaction after it goes above a threshold.
      Or look into the new Input System and look at the Hold interactor which will trigger the performed event only after that hold time has elapsed unitycodemonkey.com/video.php?v=Yjee_e4fICc

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

    I have a couple of questions, as I implemented something similar not long ago. Wouldn't a monobehavior be a better choice for the Interactable, rather than interface? Most of the implemented functions are the same in all three of your examples (getTransform is exactly the same, the string function can be made to return a serialized String, so the function is the same for all instances) with the interact function being made into a virtual method to override in specific subclasses. Second question. In my implementation, in order to find nearby interactable I added a trigger collider and registered the list of interactable on the triggerEnter method and removed them on the triggerExit method (or if their gameobject is destroyed). Would such approach be similar to the one you presented in terms of efficiency?

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

      Both options work so it really depends on how you structure your code.
      With MonoBehaviours you're going to need to create a new script for every different behaviour. Whereas with an interface, you can just add the custom code to the custom script that already runs that object, so no need for having a Door script and a DoorInteractable script.
      Using a giant trigger collider placed on the player would indeed also work, probably very similar in terms of performance so it's mainly a personal preference thing, I like to do it through code.

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

    I use mixamo and fuse for free models and animations

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

    I made new project on 3d but when i put package it's all pink :(

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

      You just need to install the Universal RP package and set the project to use it

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

      @@CodeMonkeyUnity Thanks i'll try at the morning

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

    loooooooooooooooooooooooooooooove you

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

    Unity newbie here. This probably might not be the best video to ask this but can I ask how can I create NPCs?

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

      It depends on what you mean by NPC. What do you want it to do?
      It could be as simple as a game object with a character standing Idle, or something complex like a Companion that follows you and fights. Both are NPCs so it really depends specifically what you are trying to do.

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

      @@CodeMonkeyUnity Just someone (or something if it's possible) to interact.

  • @ha7anali313
    @ha7anali313 10 місяців тому

    The Video Was Quite Useful thanks , but why can't we use SphereCast Or RayCast System ?? like that Works Fine I guess

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  10 місяців тому

      Sure you can use a SphereCast but there's no need to move the virtual spehre

    • @ha7anali313
      @ha7anali313 10 місяців тому

      Well , Now that y've mentioned it , Its Truee Why i Wasn't doin it before , Yeahh That's right there's no need to move the virtual Sphere in cases like these Thanks MANNNN Damn you just i dont know am soo dumb i nver thought about it that way lol BTW thanks@@CodeMonkeyUnity

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

    Hi, just a quick question. If I use unity ads and put my game on the Google store, who pays me? Google or unity?

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

      Google I think so.

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

      @@kunj1064 oh I hope not, I've got a hold on payments that I don't know how to fix cos it's not telling why. And I can't find a number to sort it.

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

      Ooo

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

      If you use the Unity Ad network then Unity will pay you. You can view the stats in your Unity dashboard.
      But if you use Unity Mediation coupled with AdMob then I'm not entirely sure what happens in that scenario.

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

      @@CodeMonkeyUnity ok

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

    Greetings Code Monkey Unity, I would like to ask a question regarding to the relation between ua-cam.com/video/MIt0PJHMN5Y/v-deo.html (Simple Key Door System in Unity) and this video. If i want to implement the Interface code from this video into (Simple Key Door System in Unity) from [3.04 - 10.02] to obtain the key via the code line (Input.GetKeyButton), which code should i put into?
    According to the problem i'm facing right now, the code that i make has no error and i can interact with any object. When my character stands near the key, the UI can show the press button and the text, but when i want to interact with the key, the key can't react with the button i press...
    It would be grateful if you are willingly to answer my question, thanks!

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

      Obtain the key how? By approaching and pressing the interact button? You would make some key object with some script that has IInteractable, just with that the player will be able to interact with it so then on the interact code you add the Key to the player's KeyHolder.

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

      @@CodeMonkeyUnity Yes! By approaching it and interact with it by pressing the interact button

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

    Put the distance check on the NPC's the player object can talk to.

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

      Why?

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

      @@ewwitsantonio Reduces the complexity of the design, and it is not the Player who should know which NPCs it communicated with; it is the NPCs who should know they need to communicate with the Player.

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

      Doesn't make sense for the NPC to test the distance since it is the Player who is attempting to initiate the interaction, that would only make sense if the NPC was running towards the player to initiate some conversation or give them a quest.
      And like I mentioned in the video doing a distance check would be wasteful so that's why I prefer using a simple Physics query.

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

      @@CodeMonkeyUnity Proximity gets tested on collisions. Both objects get tagged. The game shows the conversation via a scriptable object driver conversation using both tags. This is an Object-Oriented Design. For simplicity, you could smush the logic into the scriptable object; however, this would be less Object-Oriented than the other.

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

      @@CodeMonkeyUnity Physics query is only faster because the physics system probably has some kind of chunk-based batching built in. It's quite trivial to implement and would most likely make distance checking faster.

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

    Whey you didn't use raycast
    Physics!!

  • @someguy9163
    @someguy9163 9 місяців тому

    how do you do the door open? is there an animator or something and what do i name it? pls help me

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  9 місяців тому

      Yup just a basic animator moving an object

    • @someguy9163
      @someguy9163 9 місяців тому

      @@CodeMonkeyUnity How do i do that then

    • @someguy9163
      @someguy9163 9 місяців тому

      @@CodeMonkeyUnity um What do i do?

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  9 місяців тому

      Create an Animator controller, create an Animation where the door opens, another where the door closes. Then add a Bool parameter IsOpen, when that parameter is true play the open animation, when false play the close animation. Then just control that parameter through code