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

  Рет қаралды 106,803

Code Monkey

Code Monkey

Күн бұрын

Пікірлер: 259
@CodeMonkeyUnity
@CodeMonkeyUnity 2 жыл бұрын
✅ 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! kzbin.info/www/bejne/pnWVaIyrf6xmgpo Simple Chat Bubble in Unity! (Chat, NPC, Multiplayer) kzbin.info/www/bejne/gWKWiKGEgZaCj68 Kickstart your game with First and Third Person Controllers! (FREE Unity Starter Assets) kzbin.info/www/bejne/oIndZpWVbt9jeMU Make your Animations DYNAMIC with Animation Rigging! kzbin.info/www/bejne/gnbaiqB8iZires0 SMOOTH with LERP! (Move, Rotate, Float) kzbin.info/www/bejne/oHKxY3yljMmDsK8 What are Interfaces? (C# Basics) kzbin.info/www/bejne/g4uyo3qOoJmLfKs
@saqii5344
@saqii5344 Жыл бұрын
Can i use your Project file in my project for commercial purposes
@itsAdopo_DevXD
@itsAdopo_DevXD Жыл бұрын
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 Жыл бұрын
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 6 ай бұрын
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 2 жыл бұрын
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 2 жыл бұрын
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 2 жыл бұрын
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 2 жыл бұрын
@@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
@clarkmeyer7211
@clarkmeyer7211 2 жыл бұрын
I had ideas on how this would be done but this will be a great skill to have for multiple uses. thanks for this
@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 2 жыл бұрын
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
@hypercharge26
@hypercharge26 2 жыл бұрын
Exactly when I am stuck on a point, code monkey comes from heaven to save me. Thank you so much CM!!
@vikramthewrench
@vikramthewrench 2 жыл бұрын
lol, same
@rmt3589
@rmt3589 Жыл бұрын
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.
@Slumbjorn
@Slumbjorn 2 жыл бұрын
ahem......... **GENERAL KENOBI**
@petersaup
@petersaup 2 жыл бұрын
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!
@ewwitsantonio
@ewwitsantonio 2 жыл бұрын
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 :)
@Benny-st6zi
@Benny-st6zi 2 жыл бұрын
Why did you use Physics.CheckSphere and not a collider trigger? Are there any disadvantages?
@CodeMonkeyUnity
@CodeMonkeyUnity 2 жыл бұрын
Mainly just personal preference, adding a trigger collider on top of the player game object would indeed also work.
@Spridonculous
@Spridonculous 2 жыл бұрын
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.
@kevinmatthews6369
@kevinmatthews6369 2 жыл бұрын
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.
@CodeMonkeyUnity
@CodeMonkeyUnity 2 жыл бұрын
Thanks! I'm glad you liked the video!
@antonorlov8838
@antonorlov8838 Жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
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.
@imietx6819
@imietx6819 5 ай бұрын
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 5 ай бұрын
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.
@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 2 жыл бұрын
This to should be under every video. Newbies won't do this. But they will get used to removing junk from scripts.
@CodeMonkeyUnity
@CodeMonkeyUnity 2 жыл бұрын
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.
@rigoabell4863
@rigoabell4863 Жыл бұрын
Best video I've seen in about NPCs on KZbin 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
@NachitenRemix
@NachitenRemix 2 жыл бұрын
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 2 жыл бұрын
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 2 жыл бұрын
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?"
@AaronAsherRandall
@AaronAsherRandall 2 жыл бұрын
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 2 жыл бұрын
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
@LotionSoronarr
@LotionSoronarr 2 ай бұрын
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.
@Ninja-Dev
@Ninja-Dev Жыл бұрын
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 Жыл бұрын
Yup that's a good point, adding player direction into the logic would indeed make it feel more natural
@Ninja-Dev
@Ninja-Dev Жыл бұрын
@@CodeMonkeyUnity Nice video though, I should have mentioned! 😃
@arcday4281
@arcday4281 2 жыл бұрын
A great motivator to make a code to open the door when there is such a lot of money behind it )))
@B4NTO
@B4NTO Жыл бұрын
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 Жыл бұрын
Yup feel free to use any of the code in the videos/utilities in your own projects, free or commercial. Thanks!
@tommckenzie4385
@tommckenzie4385 4 ай бұрын
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?
@kunj1064
@kunj1064 2 жыл бұрын
After a long time I came to see video I was busy . I was studying web development. Again awesome video .
@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 2 жыл бұрын
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 2 жыл бұрын
@@CodeMonkeyUnity got ya! Thanks :)
@mehow.
@mehow. 2 жыл бұрын
I got really scared after seeing the solution without an interface, thinking that this would be your final proposal :) great tutorial!
@DecentralisedGames
@DecentralisedGames 2 жыл бұрын
Damn, I thought this tutorial was for IRL.
@Visigoth_
@Visigoth_ 2 жыл бұрын
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 2 жыл бұрын
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
@feedertayfa8745
@feedertayfa8745 16 күн бұрын
Collider2D[] colliderArray= Physics2D.OverlapCircleAll(transform.position, interactRange); when ı write this it says it can not convert to the UnityEngine.Collider2D to the UnityEngineCollider2D[]
@CodeMonkeyUnity
@CodeMonkeyUnity 16 күн бұрын
That's odd, did you save your code? That looks correct, Physics2D.OverlapCircleAll does indeed return a Collider2D[] Just make sure it's not Physics2D.OverlapCircle which returns just one
@Zer0charl3s
@Zer0charl3s Жыл бұрын
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. Жыл бұрын
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
@PsychoNMG
@PsychoNMG 2 жыл бұрын
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(); }
@darkenrahl488
@darkenrahl488 4 ай бұрын
24:06 not all difference. Vector3.Distance dnt work in 2D
@badscotsman
@badscotsman Жыл бұрын
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.
@a3n_gd
@a3n_gd 2 жыл бұрын
Hey! I expected using a ray- or spherecast instead of physics overlap. Can you explain why you use one over another?
@CodeMonkeyUnity
@CodeMonkeyUnity 2 жыл бұрын
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
@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.
@alipauly
@alipauly 9 ай бұрын
I am really tired of these incomplete and stupid tuts of code monkey
@CodeMonkeyUnity
@CodeMonkeyUnity 9 ай бұрын
What is incomplete? The entire interaction system is built during the video
@alipauly
@alipauly 9 ай бұрын
how can i know what is chatBubble or iconType without codes@@CodeMonkeyUnity
@CodeMonkeyUnity
@CodeMonkeyUnity 9 ай бұрын
Those were covered in detail in the Chat Bubble tutorial linked in the description And those are not directly related to the Interaction System, you dont need a Chat Bubble to handle interactions, it's just an example of one interaction you could do It's important for you to learn that systems are meant to be as separate as possible, you shouldn't have a mess of code where everything directly interacts with everything else. If you're specifically looking for a guided path instead of separate tutorials then what you want is a complete step by step course kzbin.info/www/bejne/d56qhHh-bLaWesk
@alipauly
@alipauly 9 ай бұрын
Thank you man i am just a noob beacause of that i get angered@@CodeMonkeyUnity
@thelonghaul9902
@thelonghaul9902 8 ай бұрын
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 8 ай бұрын
You can't rotate the player with the mouse? You can't move? Is the game running? Got any errors in the console?
@apples1054
@apples1054 Жыл бұрын
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 Жыл бұрын
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
@dkordy
@dkordy Жыл бұрын
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?
@while.coyote
@while.coyote Жыл бұрын
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.
@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.
@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 )
@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)
@KushagraPratap
@KushagraPratap 2 жыл бұрын
Quality of your video has improved a lot since I last visited sometime ago. Keep it up:)
@CodeMonkeyUnity
@CodeMonkeyUnity 2 жыл бұрын
Thanks! I'm always trying to improve!
@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
@jean-michel.houbre
@jean-michel.houbre 2 жыл бұрын
Nice and clean, nothing to report!
@cristhyanjheymes2063
@cristhyanjheymes2063 24 күн бұрын
how can i make in first person the dialogue, not into world space but in hud?
@CodeMonkeyUnity
@CodeMonkeyUnity 24 күн бұрын
Use a normal text on a normal canvas instead of a separate one. I made something like it when I made a mini RPG kzbin.info/www/bejne/hni1pWCvn9qcf6s
@michaelchou1515
@michaelchou1515 Жыл бұрын
Hey!CodeMonkey,I got a question,how to make two NPC say different things?
@alpalioglu8898
@alpalioglu8898 6 ай бұрын
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 6 ай бұрын
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 6 ай бұрын
@@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
@ha7anali313
@ha7anali313 Жыл бұрын
The Video Was Quite Useful thanks , but why can't we use SphereCast Or RayCast System ?? like that Works Fine I guess
@CodeMonkeyUnity
@CodeMonkeyUnity Жыл бұрын
Sure you can use a SphereCast but there's no need to move the virtual spehre
@ha7anali313
@ha7anali313 Жыл бұрын
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
@vaibhav4215
@vaibhav4215 10 ай бұрын
How did you implement blurry effect?? Like npc were blurry until you approached closed to them??
@CodeMonkeyUnity
@CodeMonkeyUnity 10 ай бұрын
That's Depth of Field Post Processing
@vaibhav4215
@vaibhav4215 10 ай бұрын
@@CodeMonkeyUnity thanks for the reply sir..... Got it, made that effect 😁
@adris4009
@adris4009 Жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
@@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
@Thomas-qc2dc
@Thomas-qc2dc 2 жыл бұрын
This is very helpful!
@bluebrain7009
@bluebrain7009 6 ай бұрын
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 6 ай бұрын
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 6 ай бұрын
@@CodeMonkeyUnity Just someone (or something if it's possible) to interact.
@mediamermaid333
@mediamermaid333 Жыл бұрын
Thank you!!
@mirkoemir
@mirkoemir 2 жыл бұрын
Great tutorial ... very clear, neat and detailed at the same time.
@thederbly6009
@thederbly6009 Жыл бұрын
Can you make a tutorial for how to make an npc walk in random directions?
@Grinwa
@Grinwa 2 жыл бұрын
I love your videos 💞
@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!
@khurum
@khurum Жыл бұрын
can you make a video of an interactable using unity events
@bepo7000
@bepo7000 5 ай бұрын
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 5 ай бұрын
I covered that in detail in this tutorial kzbin.info/www/bejne/gWKWiKGEgZaCj68
@bepo7000
@bepo7000 5 ай бұрын
@@CodeMonkeyUnity Tysm bro ur great u have the time to reply and make videos is great much respect🙌
@peterwilliams4054
@peterwilliams4054 7 ай бұрын
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 7 ай бұрын
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.
@Arab_GameDev
@Arab_GameDev 2 жыл бұрын
Whey you didn't use raycast Physics!!
@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
@TheAlexGameChannel
@TheAlexGameChannel 2 жыл бұрын
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!
@randleman3449
@randleman3449 8 ай бұрын
Do I need to buy the asset packs to follow along, or can I just use my own assets and animations?
@CodeMonkeyUnity
@CodeMonkeyUnity 8 ай бұрын
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 8 ай бұрын
@@CodeMonkeyUnity 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.
@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 Жыл бұрын
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
@Lucky_programmer_Abhi
@Lucky_programmer_Abhi 2 жыл бұрын
electronic system in unity
@Hunter-X9211
@Hunter-X9211 3 ай бұрын
This really helped!!!
@mustafacanguvercin
@mustafacanguvercin 5 ай бұрын
You are a saint sir!❤
@drywallman55
@drywallman55 Жыл бұрын
I use mixamo and fuse for free models and animations
@sourdoughbread952
@sourdoughbread952 10 ай бұрын
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 10 ай бұрын
Yup you could indeed just do a raycast towards the center of the screen
@brycemirah4682
@brycemirah4682 Жыл бұрын
Greetings Code Monkey Unity, I would like to ask a question regarding to the relation between kzbin.info/www/bejne/g3rXYYOAfbKBa7s (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
@junnoonrafid113
@junnoonrafid113 10 ай бұрын
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 10 ай бұрын
When you trigger the interaction you would open up come kind of complex UI that contains buttons/sliders for all those actions
@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 Жыл бұрын
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!
@JUDA_1
@JUDA_1 Жыл бұрын
loooooooooooooooooooooooooooooove you
@slodoco
@slodoco Жыл бұрын
Please add subtitles if you can. Thank you for the wonderful video. :)
@CodeMonkeyUnity
@CodeMonkeyUnity Жыл бұрын
The KZbin auto generated captions are usually very good!
@lazytocook
@lazytocook Жыл бұрын
your voice and the way u talk makes me smile.
@marcus_vdm
@marcus_vdm 2 жыл бұрын
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 2 жыл бұрын
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
@ahmaddalao
@ahmaddalao 8 ай бұрын
I always find your tutorials useful and helpful. and as usual clean expandable code.
@CodeMonkeyUnity
@CodeMonkeyUnity 8 ай бұрын
I'm glad the videos have helped you! Thanks!
@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?
@abdoulraoufgambo
@abdoulraoufgambo Жыл бұрын
This tutorial is awesome !!!!!🤘🤘🤘
@ananthukrishna5259
@ananthukrishna5259 2 жыл бұрын
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 2 жыл бұрын
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 2 жыл бұрын
@@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?
@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.
@ИбрагимИванов-э3р
@ИбрагимИванов-э3р Жыл бұрын
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
@jud.su.5developer895
@jud.su.5developer895 2 жыл бұрын
😱🤯🤯🤯🤯🤯🤯😱😱
@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.
@duyne7128
@duyne7128 2 жыл бұрын
Finally, this is what all i need. Thank you
@someguy9163
@someguy9163 11 ай бұрын
how do you do the door open? is there an animator or something and what do i name it? pls help me
@CodeMonkeyUnity
@CodeMonkeyUnity 11 ай бұрын
Yup just a basic animator moving an object
@someguy9163
@someguy9163 11 ай бұрын
@@CodeMonkeyUnity How do i do that then
@someguy9163
@someguy9163 11 ай бұрын
@@CodeMonkeyUnity um What do i do?
@CodeMonkeyUnity
@CodeMonkeyUnity 11 ай бұрын
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
@Lucky_programmer_Abhi
@Lucky_programmer_Abhi 2 жыл бұрын
electricity 🔌 system in unity
@foxgodfor2
@foxgodfor2 2 жыл бұрын
Can you make a tutorial on how to make the player fly plz🥺
@jalanstudio2465
@jalanstudio2465 Жыл бұрын
11:20
@user-do3pd1sk6c
@user-do3pd1sk6c 2 жыл бұрын
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 2 жыл бұрын
Plus it also supports every interactable object with only one line of code
@Lucky_programmer_Abhi
@Lucky_programmer_Abhi 2 жыл бұрын
electronic system in unity
@Lucky_programmer_Abhi
@Lucky_programmer_Abhi 2 жыл бұрын
electronic system in unity
@FortressBOfficial
@FortressBOfficial Жыл бұрын
6:30 leaving mark
@r.gtz.4521
@r.gtz.4521 2 жыл бұрын
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
@rianb6897
@rianb6897 Жыл бұрын
I made new project on 3d but when i put package it's all pink :(
@CodeMonkeyUnity
@CodeMonkeyUnity Жыл бұрын
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
💩Поу и Поулина ☠️МОЧАТ 😖Хмурых Тварей?!
00:34
Ной Анимация
Рет қаралды 2 МЛН
哈哈大家为了进去也是想尽办法!#火影忍者 #佐助 #家庭
00:33
How Strong is Tin Foil? 💪
00:26
Preston
Рет қаралды 137 МЛН
How to Code (almost) Any Feature
9:48
DaFluffyPotato
Рет қаралды 685 М.
Unity Vaulting Tutorial: How to Create a Realistic Vaulting System
21:24
Unity Next Gen UNVEILED! (and news from Unite)
28:09
Code Monkey
Рет қаралды 34 М.
20 Advanced Coding Tips For Big Unity Projects
22:23
Tesseract
Рет қаралды 187 М.
💩Поу и Поулина ☠️МОЧАТ 😖Хмурых Тварей?!
00:34
Ной Анимация
Рет қаралды 2 МЛН