Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 TheGameMaker01 · Jul 26, 2014 at 10:33 PM · objectsinventorytags

Same objects doing the same thing

I'm making a survival game. In this game you can pick up objects, and put it into inventory. I made a gun in blender and put it into the game and put the pick up script in it. You can pick it up, put into your inventory and all that, but then I wanted to put multiple guns so I can test if my inventory script could find out the first empty slot in the inventory window. So i did.It worked, but there was one problem. When I pick up one gun, all objects with tags concerning with "cm9", disappear. I know, I could make the duplicates of that one gun have a different tag, but I don't want that. Because it would make randomized loot spawns(which I plan for the future) not work as I expect it to! What should I do?

Comment
Add comment · Show 2
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
avatar image ShadoX · Jul 26, 2014 at 10:35 PM 0
Share

don't use tags.. perhaps just use the object name or check if the object that you're picking up contains a specific script.. or just fix the part of the code that removes all other instances of the object with the same tag..

also, try posting some code.. it's a lot easier to help you that way :)

avatar image TheGameMaker01 · Jul 26, 2014 at 10:36 PM 0
Share

Here.

using UnityEngine; using System.Collections; using System.Collections.Generic;

public class PickUpGun : $$anonymous$$onoBehaviour { public GameObject Gun; public bool GotPistol; private Ray mouseRay; private RaycastHit rayHit;

 private Dictionary<int, string> lootDictionary = new Dictionary <int, string>()
 {{0, string.Empty},
     {1, string.Empty},
     {2, string.Empty},
     {3, string.Empty},
     {4, string.Empty},
     {5, string.Empty}
 };
 ItemClass itemObject = new ItemClass();

 public GameObject objectwithInventory;

 Inventory Inventory ;

 // Use this for initialization
 void Start () {
     lootDictionary [0] = itemObject.cm9Item.name;
     lootDictionary [1] = itemObject.breadItem.name;
     lootDictionary [2] = itemObject.painkillersItem.name;
     Inventory = objectwithInventory.GetComponent<Inventory>();
 }
 
 // Update is called once per frame
 void Update () {
     mouseRay = Camera.main.ScreenPointToRay (new Vector3 (Screen.width / 2, Screen.height / 2,0));
     if (Input.GetButtonDown ("Fire1")) 
     {
         Physics.Raycast(mouseRay, out rayHit);
         if(rayHit.collider.transform.tag == "cm9")
         {
             Destroy(Gun);
             GotPistol = true;
             if(GotPistol == true){
                 Inventory.inventorynamesDictionary [0] = lootDictionary[0];
                 Inventory.FirstSlot = true;
                 Debug.Log ("First Slot is now full");
                 }
             if(Inventory.FirstSlot = true && Inventory.SecondSlot == false)
                 {
                 Debug.Log("Second slot is now full");
                 Inventory.inventorynamesDictionary [1] = lootDictionary[0];
                 }
         
         
             }
         }
     }

 }

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Enabling/Disabling Multiple Tagged objects 1 Answer

Creating tags via code 3 Answers

making prefabs at runtime? 2 Answers

How to simplify my Equipment method? 1 Answer

Why isn't this script working? (Beginner in coding) 2 Answers


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