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 Testman · Mar 10, 2015 at 02:47 PM · c#triggerinterfacedialogue

[SOLVED] Accessing Specific Instance of Variable on Script Across Multiple Objects

I'm trying to build a basic dialogue interface (and am struggling as I cannot find any good tutorials on dialogue systems, hint hint ;) ).

 using UnityEngine;
 using System.Collections;
 
 public interface IDialogue{
     string prompt;
     string[] responses;
     void Speak();
     void Respond();
 }
 

This interface is implemented by my NPCDialogue script which is attached to multiple NPCs.

 using UnityEngine;
 using System.Collections;
 
 public class NPCDialogue : MonoBehaviour, IDialogue {
 
     private Transform player;           // Reference to the player's transform.
     private HashIDs hash;
     private GUIText dialogue;
     private GameObject response_menu;
     private bool inRadius = false;
 
     public string NPC_Name;
 
     void Awake(){
         player = GameObject.FindGameObjectWithTag(Tags.player).transform;
         dialogue = GameObject.FindWithTag (Tags.dialogue).guiText;
         dialogue.text = null;
 
         NPC_Name = transform.parent.name;
         print ("NPC name: " + NPC_Name); //Returns correctly for each NPC
 
         //fileManager.Instance.parseXMLFile ("Data/XMLScripts", NPC_Name, "xml", "plaintext");
     }
 
     void OnTriggerEnter(Collider col){
         inRadius = true;
         Converse (); //Returns correct, NPC specific variable
     }
 
     void OnTriggerExit(Collider col){
         
         dialogue.text = null;
     }
 
     public void Speak(){
         dialogue.text = "My name is " + this.gameObject.GetComponent<NPCDialogue>().NPC_Name; 
         print ("Speaking with: " + NPC_Name);
     }
 
     public void Respond() {
 
     }
 
     void Converse(){
         Speak ();
 
     }
 
     void Update(){
         if (inRadius) {
             if (Input.GetButtonDown ("Interact")) {
                 //Converse (); //Returns most recent variables
             }
         }
     }
 }

I need to be able to interact with each NPC using their unique versions of these variables. The problem is that the only way I can get this to work is to call Converse() from OnTriggerEnter() as when I call it from Input in Update() it always outputs the most recently initialised version of the NPC_Name variable, and not the instance specific to the NPC that I am talking to.

I understand why this is the case, but cannot seem to find any way around this after Googling and searching the forums for the past two hours. Any help would be greatly appreciated but code examples would be excellent!

EDIT: Partially Solved This doesn't really answer my question but I have found a workaround, by checking for GetButtonDown in OnTriggerStay. (I am unable to close this question myself)

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

2 People are following this question.

avatar image avatar image

Related Questions

Multiple Cars not working 1 Answer

Distribute terrain in zones 3 Answers

Dialogue character emotions system 1 Answer

Change colour of background in editor's object previews? 0 Answers

How to force refresh mouse position? 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