Creating An Inventory System in Unity

Поделиться
HTML-код
  • Опубликовано: 19 дек 2024

Комментарии • 297

  • @MrSkyerHawkins
    @MrSkyerHawkins 3 года назад +285

    I love your video. However, some times I get lost in what code you are talking about since you are only show/talking about one part at a time (which I love because it big and clear, I just not sure which script it belongs too). Could you maybe put the name of the Script in the corner for each time you are showing it?
    Keep up the great work and watching your videos is inspiring!

    • @lorilongwell5451
      @lorilongwell5451 Год назад

      at the top of the scripts it says what the script is

    • @rangesstudio
      @rangesstudio Год назад +6

      @@lorilongwell5451 not always, really got confused with the Update function script that didn't have a name

  • @ben_burnes
    @ben_burnes 3 года назад +123

    I appreciate that your sponsored content is just that and the tutorial is still pure and not "To do this tutorial, simply buy this sponsored content!" So many channels have fallen into that trap and it ruins the tutorials.

  • @finnwillow
    @finnwillow 3 года назад +21

    I have a problem. I am stuck at the Icon Generator [ 4:00 ]bc it just does not work. The tutorial does not show the whole piece of code and I'm a newb and don't know what to do. please help.

    • @christofstanits
      @christofstanits 2 года назад +34

      using System.Collections;
      using System.Collections.Generic;
      using UnityEditor;
      using UnityEngine;
      public class TakeScreenshot : MonoBehaviour
      {
      Camera cam;
      public string pathFolder;
      public List sceneObjects;
      public List dataObjects;
      private void Awake()
      {
      cam = GetComponent();
      }
      [ContextMenu("Screenshot")]
      private void ProcessScreenshots()
      {
      StartCoroutine(Screenshot());
      }
      private IEnumerator Screenshot()
      {
      for (int i = 0; i < sceneObjects.Count; i++)
      {
      GameObject obj = sceneObjects[i];
      InventoryItemData data = dataObjects[i];
      obj.gameObject.SetActive(true);
      yield return null;
      TakeShot($"{Application.dataPath}/{pathFolder}/{data.id}_Icon.png");
      yield return null;
      obj.gameObject.SetActive(false);
      Sprite s = AssetDatabase.LoadAssetAtPath($"Assets/{pathFolder}/{data.id}_Icon.png");
      if(s!= null)
      {
      data.icon = s;
      EditorUtility.SetDirty(data);
      }
      yield return null;
      }
      }
      public void TakeShot(string fullPath)
      {
      if(cam == null)
      {
      cam = GetComponent();
      }
      RenderTexture rt = new RenderTexture(256, 256, 24);
      cam.targetTexture = rt;
      Texture2D screenShot = new Texture2D(256, 256, TextureFormat.RGBA32, false);
      cam.Render();
      RenderTexture.active = rt;
      screenShot.ReadPixels(new Rect(0, 0, 256, 256 ), 0, 0);
      cam.targetTexture = null;
      RenderTexture.active = null;
      if (Application.isEditor)
      {
      DestroyImmediate(rt);
      }
      else
      {
      Destroy(rt);
      }
      byte[] bytes = screenShot.EncodeToPNG();
      System.IO.File.WriteAllBytes(fullPath, bytes);
      #if UNITY_EDITOR
      AssetDatabase.Refresh();
      #endif
      }
      }

    • @huoguoji1354
      @huoguoji1354 2 года назад +1

      @@christofstanits hi, i dont know why is keep saving as one sprite any solutions? same code *edit you know what, I'm dumb, I forgot to assign the id

    • @caleeeatcookies8068
      @caleeeatcookies8068 5 месяцев назад +1

      @@christofstanits Thank you so much! This is an absolute life-saver!

  • @brurrik
    @brurrik 2 года назад +55

    There's a lot of holes in this tutorial. All of the .current need to be explained. onInventoryChangedEvent and UIInventoryItemSlot aren't explained either

    • @TactfulWaggle
      @TactfulWaggle 2 года назад +5

      .current is explained in his other video about events, basically go to the top and make put in "public static InventorySystem current;", then go to the private void Awake() and put "current = this;", as for UIInventoryItemSlot i'd like to know myself i'm going crazy over here

    • @encrypteddvjjrxv1857
      @encrypteddvjjrxv1857 2 года назад +1

      @@TactfulWaggle UIInventoryItemSlot is supposed to be the name of the slot script mentioned a few seconds earlier

    • @TheCatMurgatroyd
      @TheCatMurgatroyd 2 года назад

      Do you know where "ItemController" comes from!? at 7:40
      I don't have itemController and it doesn't work if I do it with my script that has OnHandlePickupItem in it ;_;

    • @brurrik
      @brurrik 2 года назад +1

      @@TheCatMurgatroyd No Clue man, I never got around to putting this to work. Just went on and found another tutorial more in depth

    • @TheCatMurgatroyd
      @TheCatMurgatroyd 2 года назад

      @@brurrik Do you remember which one? I followed another one but was too stupid ;_;

  • @lilyofluck371
    @lilyofluck371 3 года назад +50

    Me watching this for fun know full well that I'm never gonna use this: Hmm interesting... This will be useful... Probably.

    • @HadesMrDark
      @HadesMrDark 2 года назад

      I did the same for a long time, now i can start a project and mess around a bit with ideas, it can be fun and useful at the same time watching these kind of stuff, just to expand your knowledge and way of thinking, you'll have a starting point if you ever decided to play around with game dev.

  • @Havie
    @Havie 3 года назад +19

    Thanks for making this! I had an artist request a way to take screenshots for item icons in Unity a few weeks ago and it was just sitting on the backlog. This worked perfectly and I adapted it to our needs.

  • @TheCatMurgatroyd
    @TheCatMurgatroyd 2 года назад +8

    does anyone know what the "itemController" script is!? he shows it at 7:40

  • @KH2FanLover
    @KH2FanLover 2 года назад +20

    I don't know where you put or create that InventoryItem public class.
    The tutorial is great and compact but the lack of information on where things go is frustrating XD

    • @crazytm8942
      @crazytm8942 2 года назад

      @Eigulite I didn't (I have the same problem)

    • @archive5500
      @archive5500 2 года назад +3

      @@crazytm8942 it goes in the script InventorySystem in between void awake and void add.

    • @crazytm8942
      @crazytm8942 2 года назад +1

      @@archive5500 thank you!

  • @Seriphis2200
    @Seriphis2200 2 года назад +9

    I was having some dramas getting the inventorysystem to serialize, the public getter and private setter in the inventoryitem list definition within the inventorysystem, and then the same for the data and stacksize attributes in the inventoryitem were blocking the serialization... (this is actually seen at 8:03, as there are no attributes when the inventorysystem is added) no messages, nothing. this was on 2020.3.24f1.
    Modifying these lines to remove the getter/setter allowed the serialization as seen at 8:12.
    those playing along at home need simply change "public List inventory {get; private set;}" to "public List inventory;", rince and repeat for the same style of lines in the InventoryItem script.

    • @Seriphis2200
      @Seriphis2200 2 года назад +2

      I just wanted to circle back as I've learnt another way to solve the problem above; You can forcibly serialize using "[field: SerializeField]" and it achieves the same outcome as removing the getter/setter declaration.

    • @HackEndLess
      @HackEndLess 2 года назад

      @@Seriphis2200 I did both ways but still can't serialize that list

    • @Seriphis2200
      @Seriphis2200 2 года назад +1

      ​@@HackEndLess Check that you have your InventoryItem class "[Serializable]", that you've used "[field: serializefield]" on each of the items that have the getters defined in line. In the InventorySystem class you will need to do the same field declaration for the "inventory" list defined within it... you cant serialise the dictionary so if you're expecting that to appear you're out of luck.

    • @HackEndLess
      @HackEndLess 2 года назад

      ​@@Seriphis2200 I did everything you and others said but still can't serialize inventory list nothing worked for me, I even upgraded Unity version to 2020.3.27f1 from 2020.3.20f1. Anyway thanks for the help. It's not a big deal because system works. So I give up on that.

    • @Seriphis2200
      @Seriphis2200 2 года назад

      @@HackEndLess Thats a bummer, if its working then great but thats super frustrating. Best of luck with your project.

  • @الزنجريتي
    @الزنجريتي 3 года назад +9

    Assets\Scripts\itemobject.cs(11,25): error CS0117: 'InventorySystem' does not contain a definition for 'current' ihave this eror

    • @BANANADOMAU
      @BANANADOMAU 3 года назад +20

      change your InventorySystem script like this.
      public class InventorySystem : MonoBehaviour
      {
      public static InventorySystem current;
      private Dictionary m_itemDictionary;
      public List inventory;
      private void Awake()
      {
      current = this;
      inventory = new List();
      m_itemDictionary = new Dictionary();
      }

    • @koopee8577
      @koopee8577 3 года назад

      @@BANANADOMAU which part of the script do I replace this part with

    • @BANANADOMAU
      @BANANADOMAU 3 года назад +2

      @@koopee8577 just replace some part of the InventorySystem class script
      added this on variable declarations "public static InventorySystem current;"
      added this on Awake method "current = this;"

    • @dragonrager3344
      @dragonrager3344 2 года назад +1

      @@BANANADOMAU Thank you so much! I've been looking for this SINGLE piece of code forever and couldn't figure it out myself.

    • @GaamerGuyys
      @GaamerGuyys 2 года назад

      @@BANANADOMAU thank you so much! How'd you figure that out?

  • @scottisitt
    @scottisitt Год назад +6

    Love the simplicity of the UI! Thank you so much for showing us this!

  • @Notllamalord
    @Notllamalord Год назад +2

    the screenshot thing blew my mind ngl

  • @dfgesfg
    @dfgesfg 2 года назад +4

    Where is the onInventoryChangedEvent and where is the UIInventoryItemSlot? 9:13

    • @Johnny-Wayfinder
      @Johnny-Wayfinder 3 месяца назад

      I think UIInventoryItemSlot is a script where
      ```
      [SerializeField]
      private Image m_icon;
      [SerializeField]
      private TextMeshProUGUI m_label;
      [SerializeField]
      private GameObject m_stackObject;
      [SerializeField]
      private TextMeshProUGUI m_stackLabel;
      public void Set(InventoryItem item)
      {
      m_icon.sprite = item.data.icon;
      m_label.text = item.data.displayName;
      if (item.stackSize

  • @D3kryption
    @D3kryption 3 года назад +11

    You're getting sponsers now? Lil Matts growing up! Making us so proud :D nice work buddy!

  • @AgsmaJustAgsma
    @AgsmaJustAgsma 3 года назад +11

    That screenshot script looks extremely useful and easy to implement. I've been trying to find one that was usable for quite some time.

    • @mohammadsadeghlavaie5560
      @mohammadsadeghlavaie5560 3 года назад +1

      There's a one-line screenshot method in unity which captures the game view and saves it at the location you pass as a parameter

    • @chikato7106
      @chikato7106 3 года назад +1

      @@mohammadsadeghlavaie5560 lol did you not watch the video?

  • @subirin96
    @subirin96 Год назад +3

    I like how you showcase the system itself. I understood the system itself and it is very good way to create efficient workflow for inventories. However the way you explain codes in sliced screenshot is confusing especially to newer programmers. I hope you can recreate more tutorial for beginners in mind because admittedly most people that watch tutorials are beginner in programming itself. And for advanced user you can make a disclaimer at the star or title itself.

  • @keylon4518
    @keylon4518 3 года назад +9

    This man did a Core add while doing a unity tutorial

  • @MangoVoxel
    @MangoVoxel 2 года назад +2

    I got lost at 4:00 because it only shows a snippet of code - I am new to unity so trying to figure this out was really difficult, is there a place where I can see the full IconGenerator code?

    • @greenlandmods
      @greenlandmods 2 года назад

      Same I wish he would show the whole thing

    • @aleks_gavs
      @aleks_gavs 2 года назад +7

      using System.Collections;
      using System.Collections.Generic;
      using UnityEditor;
      using UnityEngine;
      public class TakeScreenshot : MonoBehaviour
      {
      Camera cam;
      public string pathFolder;

      public List sceneObjects;
      public List dataObjects;
      private void Awake()
      {
      cam = GetComponent();
      }
      [ContextMenu("Screenshot")]
      private void ProcessScreenshots()
      {
      StartCoroutine(Screenshot());
      }
      private IEnumerator Screenshot()
      {
      for (int i = 0; i < sceneObjects.Count; i++)
      {
      GameObject obj = sceneObjects[i];
      InventoryItemData data = dataObjects[i];
      obj.gameObject.SetActive(true);
      yield return null;
      TakeShot($"{Application.dataPath}/{pathFolder}/{data.id}_Icon.png");
      yield return null;
      obj.gameObject.SetActive(false);
      Sprite s = AssetDatabase.LoadAssetAtPath($"Assets/{pathFolder}/{data.id}_Icon.png");
      if(s!= null)
      {
      data.icon = s;
      EditorUtility.SetDirty(data);
      }
      yield return null;
      }
      }
      public void TakeShot(string fullPath)
      {
      if(cam == null)
      {
      cam = GetComponent();
      }
      RenderTexture rt = new RenderTexture(256, 256, 24);
      cam.targetTexture = rt;
      Texture2D screenShot = new Texture2D(256, 256, TextureFormat.RGBA32, false);
      cam.Render();
      RenderTexture.active = rt;
      screenShot.ReadPixels(new Rect(0, 0, 256, 256 ), 0, 0);
      cam.targetTexture = null;
      RenderTexture.active = null;
      if (Application.isEditor)
      {
      DestroyImmediate(rt);
      }
      else
      {
      Destroy(rt);
      }
      byte[] bytes = screenShot.EncodeToPNG();
      System.IO.File.WriteAllBytes(fullPath, bytes);
      #if UNITY_EDITOR
      AssetDatabase.Refresh();
      #endif
      }
      }

    • @TheJakeblake
      @TheJakeblake 2 года назад

      @@aleks_gavs Thank you sooo much!

    • @aleks_gavs
      @aleks_gavs 2 года назад +1

      @@TheJakeblake I copied it from another comment)

    • @TheJakeblake
      @TheJakeblake 2 года назад +2

      @@aleks_gavs oh for real? I did not found that comment, thanks none the less, your comment is much more to the top I assume so this saves me time, which I'm glad, Have a Good Day.

  • @KingDoogan
    @KingDoogan 3 года назад +29

    I love how compact your code is.
    This beats watching 10 tutorials to make an inventory lmao
    Really well done and quick

  • @burtlangstrom1860
    @burtlangstrom1860 2 года назад +14

    At what point did you make inventory system a singleton and what is .current? The closest I could find to that is a property in IEnumerator, so is it something you put into the InventorySystem offscreen? Or did you bring something into the class specifically for you to call that?

    • @dygnyc
      @dygnyc 2 года назад +5

      yeah, there are some hole in the tut.

    • @archive5500
      @archive5500 2 года назад +9

      yea exactly, like it's a good video except for the fact that there are huge holes in context and he only hearts comments that are positive, these comments go un-replied to and it gets infuriating to a point

    • @5ld734
      @5ld734 2 года назад +3

      .current is like
      public static InventorySystem current;

    • @DaxVIII
      @DaxVIII Год назад +5

      Maybe its a late answer, but in case anybody searchs for the same thing
      declare a "public static InventorySystem current;" variable inside the InventorySystem script
      and inside the "private void Awake" function instantiate the current variable (currently empty) using : "current = this;" if you do it like he did in the tutorial
      Hope its helpful for any dev wondering in the future

    • @jamesbarancewicz9242
      @jamesbarancewicz9242 Год назад

      @@DaxVIII Veeery new to unity and yes, yes it was helpful. Searched for this for half an hour before coming to the comments here. Thank you

  • @kenansoylu4037
    @kenansoylu4037 2 года назад +22

    The shown code is missing some important bits like the onInventoryChanged event handler and the InventorySystem singleton instance but overall helpful video.

    • @gedjucius2418
      @gedjucius2418 2 года назад

      did you solve how to get the on inventorychanged event i cant seem to think of how to do it?

    • @xxragingkillerx8357
      @xxragingkillerx8357 2 года назад

      @@gedjucius2418 solved yet ??

    • @diogocarloto8464
      @diogocarloto8464 2 года назад +1

      @@xxragingkillerx8357 just subdcribe to an event that is called every time you change the inventory

    • @dmas7749
      @dmas7749 2 года назад +1

      this. i mostly needed to see how to make a menu and it just gets zero attention, annoying.

  • @jacobp.6160
    @jacobp.6160 2 года назад +6

    To anyone getting "error CS0246: The type or namespace name 'Serializable' could not be found" you just need to add System. Infront first~ "[System.Serializable]"

  • @stillzen-dev
    @stillzen-dev 9 месяцев назад

    yo, this is such a good video. straight to the point, no bullshit or 50minute expl of each concept

  • @JarppaGuru
    @JarppaGuru Год назад +2

    3:59 Dont we hate tutorials when full script not showed. it wont work without adding needed things.
    how i get button to click screen shot or that menu LOL

  • @legosol1081
    @legosol1081 Год назад +4

    I have an issue in my code and can't solve it myself. Thanks for helping in advance...
    Heres this problem... i wrote InventorySystem.current.Add(referenceItem); inside of the item object script, but then unity tells me inventorysystem does not contain a definition for current... how can i solve this?

    • @hi_its_stephen
      @hi_its_stephen Год назад

      Ah sad.... I commented the exact same question yet I see you asked this 5 months ago with no response

  • @Soulzjd2
    @Soulzjd2 2 года назад +2

    Thanks for the info and the added extra bits too. Like the fact we can use unity to create, and import icons. I had created 40+ icons via copying my entire desktop screen and croping the icon out by hand.

  • @jakehornerman
    @jakehornerman 3 года назад +12

    Matt please do a series on the new input system, the way you explain concepts and things is so straight forward! would love to see a few videos on this topic

  • @biruna3962
    @biruna3962 3 года назад +7

    Am I the only one stuck at the screenshot part I've copy the whole code but it doesnt work for me ?

    • @biruna3962
      @biruna3962 3 года назад +2

      how is camera not deprecated, why targettexture doesnt work ? help pls

  • @RoStepMusic
    @RoStepMusic 2 года назад +3

    onInventoryChangedEvent was a little tricky for a beginner but I managed to get it working :D

    • @lucidjuice101
      @lucidjuice101 2 года назад

      Can you please explain how you did it? Thanks in advance :)

    • @RoStepMusic
      @RoStepMusic 2 года назад +3

      @@lucidjuice101 I followed his other tutorial "how to build an event system"

    • @lucidjuice101
      @lucidjuice101 2 года назад

      @@RoStepMusic Thanks for the info!

    • @gedjucius2418
      @gedjucius2418 2 года назад

      @@RoStepMusic i tried to follow that video but still seem to not know to do it

    • @RoStepMusic
      @RoStepMusic 2 года назад

      @@gedjucius2418 It is not that hard even for a beginner. You should not dive this deep if you don't have basic knowledge. Join his community discord server and ask for help. They will help you in no time.

  • @flathead9134
    @flathead9134 3 года назад +2

    How to create Screenshot button like in video at 4:14 ?

    • @josequeiros4811
      @josequeiros4811 3 года назад

      I can't create it either. Can anyone help?

    • @HausCoding
      @HausCoding 3 года назад

      [ContextMenu("Screenshot")] in video at 4:46

  • @lukeystuff
    @lukeystuff 2 года назад +2

    Hiya! I managed to make my way through the tutorial fairly easily, but I've just got one problem.
    "onInventoryChangedEvent"
    This doesn't work without other behind the scenes stuff that I don't know right now. Could you help?

    • @GameDevGuide
      @GameDevGuide  2 года назад

      Check out the event system video here on the channel!

  • @hi_its_stephen
    @hi_its_stephen Год назад +1

    I got an error for the ItemObject script at 7:50. It says 'Inventory System' does not contain a definition for 'current.' In theory, I understand what a singleton is, but I feel like this section was glossed over quickly. I'm inexperienced and thus missing something that should probably be really obvious.

    • @nomatyx5789
      @nomatyx5789 Год назад +2

      A singleton is an object that can be accessed from any script. To do that, you'll have to instantiate an instance of the singleton. Write some code that makes sure there is ONLY ONE instance of the singleton.
      Googling what "current" means in unity will only bring you to the one regarding Events, which isn't accurate. for my singletons, I use the name instance. So, at the top of the InventorySystem script, you should write:
      private static InventorySystem _instance;
      public static InventorySystem Instance => _instance;
      Then, inside your awake function (create one if you don't have one!), write:
      if (_instance != null)
      {
      Debug.Log("there's already an instance of this singleton!")
      Destroy(_instance);
      return;
      }
      _instance = this;
      Now, when implementing this code, replace "current" with Instance when it's outside of the InventorySystem script, and _instance when it's inside.

    • @kalashio
      @kalashio 6 месяцев назад

      @@nomatyx5789 Thank you so much, actually amazing

    • @nomatyx5789
      @nomatyx5789 6 месяцев назад

      @@kalashio Sorry, could you remind me what my comment said? It seems to not be showing up for me

    • @kalashio
      @kalashio 6 месяцев назад

      @@nomatyx5789yeah no worries! You explained what singletons were and gave code on how to properly implement the system into the game. (Which worked perfectly)

    • @nomatyx5789
      @nomatyx5789 6 месяцев назад

      @@kalashio awesome :) glad i could help!
      i went on some comment retrieval site and found my comment-- there's one thing i'd like to clear up. All static variables are able to be accessed by the whole program. Singletons are just a certain type of static variable.
      The difference between a singleton and a static variable is the "if(_instance != null){Destroy(_instance);} bit. That's essentially saying "there can only be one instance of this", which is important for things like an inventory where you only want one

  • @FyresGames
    @FyresGames 3 года назад +6

    Great work, but I'm a bit lost. I've checked a few times the video and didn't saw when you've added the definition ''current'' in the InventorySystem script and second is there a playlist to show what you did in order before that video?

    • @GameDevGuide
      @GameDevGuide  3 года назад +1

      As mentioned in the video, I turned it into a singleton. Lookup singletons in C# / Unity for more info.

    • @FyresGames
      @FyresGames 3 года назад

      @@GameDevGuide Yeah my bad on that part. What about the playlist?

    • @e_series4519
      @e_series4519 3 года назад +2

      @@GameDevGuide where did you mention it?

    • @updaters44
      @updaters44 2 года назад +1

      @@GameDevGuide still lost lmao

    • @wmetz1869
      @wmetz1869 2 года назад +7

      @@GameDevGuide Dude do you even know how "a tutorial" is work? Not everyone know what the fuck is a singleton, and this kind of scripts need to be completed so it can work.

  • @mrb1248
    @mrb1248 2 года назад +4

    How did you do the screenshotting for the items
    i'm using everything that you showed in the video but i just have a lot of errors
    Did you use another part of the UnityEngine that i haven't?
    just wondering because it would really save a lot of time

    • @quinzelbeck
      @quinzelbeck 2 года назад

      @Elliott Childs Yhea thats the easy solution, I was thinking in doing that, but where is the fun part of programming? xd (if I cant solve the errors im going to do that)

  • @raniem4368
    @raniem4368 2 года назад +1

    At 8:13 how did you manage to view the inventory in the inspector?
    I didnt think Unity would show public list's in the inspector.

    • @huoguoji1354
      @huoguoji1354 2 года назад +1

      two ways, one way just set the list to serializable, second way just use debug mode

    • @raniem4368
      @raniem4368 2 года назад

      @@huoguoji1354 I did set the list to serializable, but that did not make it show up.

    • @huoguoji1354
      @huoguoji1354 2 года назад +1

      @@raniem4368 maybe use the debug mode method, that usually works

    • @huoguoji1354
      @huoguoji1354 2 года назад +1

      @@raniem4368 the debug work for me

    • @raniem4368
      @raniem4368 2 года назад +1

      @@huoguoji1354 awesome. Thanks

  • @noobforsoup
    @noobforsoup 3 года назад +1

    Releasing this just after I struggled making an inventory system... thanks anyway, really useful in improving my own system!

  • @TactfulWaggle
    @TactfulWaggle 2 года назад +2

    Would be really appreciated if you could tell us what UIInventoryItemSlot is or what it does or how it works, i'm completely stuck over here

  • @nicolasyanezsilva753
    @nicolasyanezsilva753 3 года назад +2

    I can't seem to be able to see the Inventory list in the inspector, if I don't put the private set I can only see it as an element, but it doesn't display with all its properties for some reason

    • @TVBUDDHAS
      @TVBUDDHAS 3 года назад +1

      remove the {get set} from both the InventorySystem and the InventoryItem scripts :)

    • @joshuahoem8740
      @joshuahoem8740 2 года назад

      @@TVBUDDHAS Thank you- this helped! Why is that?

  • @eggsareliquidchicken
    @eggsareliquidchicken 3 года назад +1

    Thanks for the tutorial. I never would have thought of that screenshot method!

  • @HandsOnKnowledge
    @HandsOnKnowledge 2 года назад +3

    Thank you Matt for making these videos for us, I have learned a lot from you. Keep making them

  • @Bagatalion
    @Bagatalion 2 года назад +21

    Tbh this tutorial is really unclear. The creator uses a singleton, but never explains how it works on a visible example. The viewer has to guess what kind of library the creator is using. A lot of question without answert.
    Not recommended for beginners.

    • @dygnyc
      @dygnyc 2 года назад

      same. some really good ideas, but some basics glossed over.

    • @IMIv2
      @IMIv2 2 года назад

      agreed. I ended up going to another tutorial that does things step by step explaining each step instead of: here code good luck.

  • @mattheweagleman8226
    @mattheweagleman8226 Год назад +2

    Where is he getting "current" from in the line "InventorySystem.current.Add(referenceItem);?

  • @epicdragon668
    @epicdragon668 2 года назад +2

    do you have to use the screenshot script to make the icons?

  • @FullMe7alJacke7
    @FullMe7alJacke7 Год назад

    Excellent video, super flexible and offers a great starting point for any inventory system.

  • @GameDevExperiments
    @GameDevExperiments 3 года назад +1

    Great video! I loved how you generated the icons, that was pretty smart :)

  • @Pedro5antos_
    @Pedro5antos_ 3 года назад +3

    Awesome content!
    A production-ready level of inventory

  • @phineasfacingforward3460
    @phineasfacingforward3460 3 года назад +3

    This is just what I needed! How did you know? Thank you so much

  • @zacharystanaford5466
    @zacharystanaford5466 2 года назад +2

    I love you made the video for us but the jumping around is confusing me, i don't know where what code belongs?

  • @ericghaugenful
    @ericghaugenful 2 года назад +3

    Apologies for the noob question but when the InventoryItem class was created was this done within the InventorySystem script or is this its own script? Thank you to anyone that replies to this!
    6:04 is the timestamp in the video where I got tripped up

    • @ericghaugenful
      @ericghaugenful 2 года назад +7

      If anyone had the same question as me I figured it out so thought I would share for any other new game developers. The InventoryItem was created as an "inner class" to the InventorySystem which is called a "wrapper class." This means that the InventoryItem class is written within the InventorySystem class.

    • @eliaskabrt1763
      @eliaskabrt1763 Год назад

      @@ericghaugenful Can you send me the whole code, pleas? I have still many errors and i don't know what to do.

    • @eliaskabrt1763
      @eliaskabrt1763 Год назад

      I know it's been a year, so i dont know if u still have it

  • @kingrey4561
    @kingrey4561 Год назад

    Does anyone know what the icon generator script at 4:12 is?

  • @themattbat999
    @themattbat999 2 года назад

    Just finished my inventory system for my game, but this will help me out a lot in improving it!

  • @deanpaul3635
    @deanpaul3635 3 года назад +11

    This is really well made and smooth as butter, well done! The icons look cool and a really clever way to capture them, I never thought of that. I've seen similar done in Blender before, but never before in Unity. Thanks for sharing I'm off to to watch more of your videos - great content!

  • @cossu2821
    @cossu2821 2 года назад +1

    Alot of holes in this tutorial. Maybe make this part of a series so people are going to know that this tutorial is using other parts from earlier tutorials? Something like " tutorial part x (Inventory system)"? Looks like a general tutorial at first but when you actually start to follow this later in the video you realize it's using alot of stuff from other videos. Learned some new stuff anyways so thanks about that but could have spent my time more productively if i would have known this beforehand!

  • @F0r3v3rT0m0rr0w
    @F0r3v3rT0m0rr0w 2 года назад

    Source code please!
    i got lost at 7:48 so id like to look at the source code to see what i did wrong.

  • @Markleap
    @Markleap 2 года назад +7

    i dont see why people cant put the script in description

    • @Johnny-Wayfinder
      @Johnny-Wayfinder 3 месяца назад

      Yeah or add a pastebin link with the code...

  • @tahazia6340
    @tahazia6340 7 месяцев назад +1

    Its Very Extreme Level Inventory System Very Hard.But Very Helpfull thanks

  • @thebulletkin8393
    @thebulletkin8393 11 месяцев назад

    With these scriptable objects, it looks to me like they are best used when you have an item that doesn't change its state at all, since it just references the asset. But if you want to create an inventory system like say, Minecraft, whereby using an item reduces its durability, can SOs allow for individual changes in these items?

  • @Niksstuff
    @Niksstuff 2 года назад +1

    Amazing tutorial! My only issue was that the InventorySystem.current didnt work, there is no refference to something called "current" could anyone please help? Thanks

    • @alexiserussard2956
      @alexiserussard2956 2 года назад

      You need to create a singleton with the inventory script

    • @_Business.Guide_
      @_Business.Guide_ 2 года назад

      hey yea i have a same error like @Niksstuff so' how can i do it? @AleyisErussard

    • @alexiserussard2956
      @alexiserussard2956 2 года назад

      @@_Business.Guide_ I've said it, you need to create a singleton

    • @nomatyx5789
      @nomatyx5789 6 месяцев назад +1

      This part was very glossed over, so I'll explain. A singleton is a kind of static object, which can be accessed from any script. To do that, you'll have to instantiate an instance of the singleton.
      Googling what "current" means in unity will only bring you to the one regarding Events, which isn't accurate. For my singletons, I use the name instance. So, at the top of the InventorySystem script, you should write:
      private static InventorySystem _instance;
      public static InventorySystem Instance => _instance;
      Then, inside your awake function (create one if you don't have one!), write some code that makes sure there is ONLY ONE instance of the singleton:
      if (_instance != null) {
      Debug.Log("there's already an instance of this singleton!")
      Destroy(_instance);
      return;
      }
      _instance = this;
      Now, when implementing this code, replace "current" with Instance when it's outside of the InventorySystem script, and _instance when it's inside.

  • @krissloo143
    @krissloo143 3 года назад

    I enjoyed watching this a lot! Well done

  • @Matti.2
    @Matti.2 3 года назад

    This came exactly when i needed it
    Thanks! :D

  • @bottleofgreed4415
    @bottleofgreed4415 Год назад +18

    Half of the tutorial isn't even showing how to do an inventory system. The video is full of holes and skipped parts

  • @daberechiukoha-kalu356
    @daberechiukoha-kalu356 2 года назад +1

    Hi, is it possible to get some help with getting the UI for inventory to work with my code? I was getting a bunch of errors and they were from missing gaps of code which I've fixed but for some reason the UI doesn't seem to be working still. I'm no longer getting errors but it doesn't add or remove the image icons when I pickup items

    • @officialsteve2185
      @officialsteve2185 Год назад

      Im in the same place. Any info on this would be great.

  • @thepreps6124
    @thepreps6124 3 года назад

    Posted 1 day ago! Great to see

  • @strategy2128
    @strategy2128 3 года назад +1

    It was an awesome tutorial! Especially the screenshot system was amazing. Now to figure out how the letter is going to get to the postman when the postman has to deliver it ;)

    • @TVBUDDHAS
      @TVBUDDHAS 3 года назад

      did you figure out how to use the items once they're in your inventory?

  • @josephwilkinson977
    @josephwilkinson977 10 месяцев назад

    In InventorySystem, the [Serializable] line is giving me errors and nothing I change fixes it.

    • @Epic_Backflip
      @Epic_Backflip 9 месяцев назад

      Try adding "using System;" to the top.

  • @GammingPotato
    @GammingPotato Год назад +1

    The screenshot script didn't work for me :(

  • @thatboi6176
    @thatboi6176 2 года назад

    I realized your tactics are beyond my knowledge.

  • @reploidzero9058
    @reploidzero9058 Год назад

    0:12 what game is that

    • @bluntdancer7054
      @bluntdancer7054 3 месяца назад

      Necroing, but thats a game from "Darksiders" series

  • @justinorringer6247
    @justinorringer6247 2 года назад +4

    Hello! I loved the tutorial. It has really helped our game.
    When generating icons using the universal render pipeline, I can't get the background transparent. I've tried a) different background types b) turning off post-processing c) setting a culling mask d) desperate other changes haha.
    Has anyone else had problems?

    • @trued7461
      @trued7461 2 года назад

      for me i changed the background type to uninitialized and it worked, make sure youre encoding to png not jpg

  • @camd9886
    @camd9886 2 года назад +6

    This video is not your best work. Feels very rushed and is honestly a headache to follow.
    Edit: Perhaps include links to the code?

  • @RandomProduct
    @RandomProduct 3 года назад +2

    First. Where's my Patreon fam at?

  • @GiraPrimal
    @GiraPrimal 3 года назад +1

    I’m working on an inventory system and boom, this tutorial pops up.
    Coincidence? I think not ;)

  • @Makzimoto
    @Makzimoto 2 года назад +2

    so... basicaly... the postman broke into your house and will not leave until you rob the house yourself and give the items to the postman... 100IQ postman right there

  • @2014-b4o
    @2014-b4o 2 года назад

    Ur amazing omg this is the right place to find a genius developer with useful and pro content, but can we get a haptic feedback vid?

  • @trueblue97
    @trueblue97 2 года назад +1

    Hey pretty random but any chance you could make a tutorial on placing Unity UI elements beneath each other. I am trying to make some buttons under scrolling text that chages size.
    I keep thinking I should be able to set the buttons to say layout below text, kind of like in android studio, but I see no such feature in unity.
    Thanks for any help!

  • @dumitruiordachi
    @dumitruiordachi 3 года назад +1

    Hey, how I can save and load it?

    • @GameDevGuide
      @GameDevGuide  3 года назад +1

      There's a save system tutorial on the channel 😉

    • @dumitruiordachi
      @dumitruiordachi 3 года назад

      @@GameDevGuide thanks, will try it)

  • @AetherXIV
    @AetherXIV 2 года назад +3

    I feel like this video only helps people as smart as you...

    • @rayne9323
      @rayne9323 2 года назад

      He is leaving things out intentionally so that you can go watch his other videos about the parts left out.

  • @gedjucius2418
    @gedjucius2418 2 года назад

    how do you get the on inventorychanged event i cant seem to think of how to do it?

  • @Eculeus007
    @Eculeus007 3 года назад

    The EnforcePresetPostProcessor Script have 2 errors by me.
    AssetDatabase' does not contain a definition for 'RegisterCustomDependency'
    Assets\Editor\EnforcePresetPostProcessor.cs(68,24): error CS1061: 'AssetImportContext' does not contain a definition for 'DependsOnArtifact' and no accessible extension method 'DependsOnArtifact' accepting a first argument of type 'AssetImportContext' could be found (are you missing a using directive or an assembly reference?)

  • @darcking99
    @darcking99 2 года назад

    In this example, I think you set a reference to the corresponding Scriptable Object in each Item prefab, correct?

  • @KaanErayAKAY
    @KaanErayAKAY 2 года назад +1

    Can u do video about quest system with scriptable object?

  • @Ultratermin8or
    @Ultratermin8or 2 года назад +2

    Where did you declare the "current" variable in the InventorySystem class???? Edit: I figured out how to do it in my own way. Damn I love how you get a lot of information out in a short amount of time, but you didn't show all the code you were using so I had to actually use my lazy comp sci brain to fill in the gaps.

    • @mashedpotatonl7966
      @mashedpotatonl7966 2 года назад

      How did you fix it? Stuck there now :P

    • @Ultratermin8or
      @Ultratermin8or 2 года назад

      @@mashedpotatonl7966 I haven't implemented full thing yet but I just created an inventory system item in my interactable class and just did inventorySystem.inventory.add(referenceItem)

  • @KBforJesusChrist
    @KBforJesusChrist 2 года назад +1

    Please make a complete tutorial on shop system for abilities, weapons and characters please no one is talking about this I'm stuck i want a start menu shop system where you buy and select items you will use in match in another scene please 🥺

  • @victoro6829
    @victoro6829 3 года назад

    And I need to use one of this itens to trigger an open door or a character?

  • @anceaaa
    @anceaaa 2 года назад +3

    Bro if you have to do a tutorial at least show full stuff not incomplete scripts for beginners like someone in this comments

  • @HappyBell92
    @HappyBell92 Год назад +3

    Okay WTF, You are not even showing the full script for the Icon Generator only the function. as a beginner this is very hard to follow. Do we need a private Camera camera; variable? what more variables do we need if any? Like how do I set the prefix and Path Folder

  • @druwayu
    @druwayu 2 года назад +10

    Not very helpful leaving all the holes in everything.

  • @nautisshadrick9254
    @nautisshadrick9254 2 года назад

    Everytime I try and use the handle function in the itemObject it adds an empty slot to the list

  • @mohammadsadeghlavaie5560
    @mohammadsadeghlavaie5560 3 года назад

    There's a literally one-line screenshot method that captures a screenshot from the game's view (which in this case is the same output of your camera). Why all the hassle?

    • @GameDevGuide
      @GameDevGuide  3 года назад +3

      Because this method supports saving from any camera, regardless of what's in the game view.

    • @mohammadsadeghlavaie5560
      @mohammadsadeghlavaie5560 3 года назад +1

      @@GameDevGuide that's cool 👌

  • @The3DCubeS
    @The3DCubeS 2 года назад

    my id variable and displayName aren't showing in the inspector!!!! Pls help!

  • @sinatrocious
    @sinatrocious 2 года назад

    InventoryItemData contains prefab field and then each item prefab should contain ItemObject component with referenceItem pointing on corresponding inventory item ScriptableObject.. huh? What is the purpose of this circular dependency? Is it to make it easy to drop item (move it from inventory into the world)? But how about spawning item (e.g. to randomize initial stamp positions) or adding it into inventory (deserializing)?

  • @The3DCubeS
    @The3DCubeS 2 года назад

    And what kind of variable is camera?

  • @antonkobziev405
    @antonkobziev405 3 года назад

    thank you for this amazing tutorial

  • @brixtonbuskers
    @brixtonbuskers Год назад

    Great tutorial. Very small but I think you forget to add to the stack when new inventory is added but is not already within the dictionary (at 6.37). I also don't really understand why you separate out InventoryItemData and InventoryItem. I know people can be averse to putting behaviour on scriptable objects but it seems cleaner / simpler to me to consolidate all the data about the inventory item in one place.

  • @forecastumbrella1626
    @forecastumbrella1626 Год назад +3

    Sorry, but the way you present the code is very confusing resulting in a bad tutorial. Some of it is shown as bits, some of it comes in the wrong order, some like the "itemContoller" we're never even shown. I would say this definitely for advanced users who can fill the gaps themselves which renders the tutorial useless in the first place.

  • @CHITUS
    @CHITUS 3 года назад

    The timing of this video is impeccable! Love your videos, thank you!

  • @Devil_Tech
    @Devil_Tech 2 года назад

    Great tutorial!

  • @koopee8577
    @koopee8577 3 года назад

    i keep getting an error saying inventory system doesnt contain a definition for "current" if anyone knows what happened here please help

    • @CodeConnor
      @CodeConnor 2 года назад

      Did you ever fix it cause same

  • @N19252
    @N19252 3 года назад +2

    Guid on Unity and sponsored by Core made on Unreal 👀

  • @TheGLK2008
    @TheGLK2008 5 месяцев назад +2

    Unity is a complex program. I understand as a YT person you want to keep your videos at about 10 minutes. But you went wayy to fast without explanation of how things actually work.