Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by NovaDrox · Sep 21, 2017 at 12:30 AM · databaseitemsstoring

How to make a copy of the data

SO, I have an item database where I store all my items I am creating into a list and then I have an inventory script which puts the info onto my icon's Data script. I created away to be able to stack the items up, but when I do, but it modifies the values on the icon as well in the Item Database. I want it to make a copy of my item data from my item data base and then put that onto my icon data, so when I stack my items, it only modifies the icon data and not the data from the item database.

Inventory Script: using System.Collections; using System.Collections.Generic; using UnityEngine;

public class Inventory_2 : MonoBehaviour { public Transform SlotsHolder; public Slot_2[] Slots;

 private List<Item> _organizer;

 private void Update()
 {
     if (Input.GetKeyDown(KeyCode.Q))
     {
         AddItemtoInventory(new Item("", 1, 1, null, ItemType.Item));
     }
     if (Input.GetKeyDown(KeyCode.E))
     {
         AddItemtoInventory(new Item("", 2, 1, null, ItemType.Item));
     }
 }

 private void AddItemtoInventory(Item _newItem)
 {
     Slots = SlotsHolder.GetComponentsInChildren<Slot_2>();

     for (int i = 0; i < Slots.Length; i++)
     {
         if (Slots[i]._infoHolder.itemName == null)
         {
             for (int d = 0; d < ItemDataBase.Database.Items.Count; d++)
             {
                 if (ItemDataBase.Database.Items[d].itemID == _newItem.itemID)
                 {
                     Slots[i].AddItem(ItemDataBase.Database.Items[d]);
                 }
             }

             break;
         }
     }
 }

}

Slot Script: using System; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.UI;

public class Slot_2 : MonoBehaviour, IDropHandler { public Item _infoHolder;

 public GameObject _itemIcon
 {
     get
     {
         if (transform.childCount > 0)
         {
             return transform.GetChild(0).gameObject;
         }
         else
         {
             return null;
         }
     }
 }

 private void Start()
 {
     AddItem(new Item());
 }

 private void Update()
 {
     if(_itemIcon != null)
     {
         _infoHolder = _itemIcon.GetComponent<IconData_2>()._itemInfo;
     }
     else
     {
         return;
     }

     if (_infoHolder.itemName != null)
     {
         _itemIcon.SetActive(true);
         _itemIcon.GetComponent<Image>().sprite = _itemIcon.GetComponent<IconData_2>()._itemInfo.itemIcon;
         _itemIcon.transform.GetComponentInChildren<Text>().text = _infoHolder.itemAmount.ToString();
     }
     else
     {
         _itemIcon.SetActive(false);
     }
 }

 public void AddItem(Item _newItem)
 {
     _itemIcon.GetComponent<IconData_2>()._itemInfo = _newItem;
 }

 public void OnDrop(PointerEventData eventData)
 {
     if(eventData.button == PointerEventData.InputButton.Left)
     {
         if(_itemIcon == null) 
         {
             IconDrag_2._icon.transform.SetParent(transform);
         }
         else
         {
             if (IconDrag_2._icon.GetComponent<IconData_2>()._itemInfo.itemName == _infoHolder.itemName)
             {
                 _infoHolder.itemAmount += IconDrag_2._icon.GetComponent<IconData_2>()._itemInfo.itemAmount;
                 IconDrag_2._icon.GetComponent<IconData_2>()._itemInfo = new Item();
             }
             else
             {
                 _itemIcon.transform.SetParent(IconDrag_2._icon._orginalParent);

                 IconDrag_2._icon.transform.SetParent(transform);
             }
         }
     }
 }

}

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

71 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

What method to use for storing and retrieving data for an OFFLINE RPG 1 Answer

Working with Items and Class Inheritance for an RPG Item Database 1 Answer

Unity and Firebase reading new data 1 Answer

Database error updating inventory 0 Answers

How would i make an item database? 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges