Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Picking up items/Inventory

Discussion in 'Scripting' started by fireworkshooter, Nov 20, 2010.

  1. fireworkshooter

    fireworkshooter

    Joined:
    Nov 19, 2010
    Posts:
    81
    how to i code and save the users inventory?
     
  2. BlackMantis

    BlackMantis

    Joined:
    Feb 7, 2010
    Posts:
    1,475
    Try the search engine in the forum. This topic is a very popular one, and you will find several examples and ideas on what kind of inventory best fits your game style. In short, creating an inventory Item class, and holding these items in an array, is a good way to go. Then the array can be saved with player.Prefs. A special array class of player.Prefs found in the wiki.
     
  3. fireworkshooter

    fireworkshooter

    Joined:
    Nov 19, 2010
    Posts:
    81
    thanks!