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 /
  • Help Room /
avatar image
0
Question by justpassingby · Jun 07, 2016 at 01:26 PM · textmouseclickdialoguegetmousebuttondown

Inconsistent GetMouseButtonDown Behaviour

Hi everyone! I've been easing my way into learning how to code game dialogue by advancing a simple dialogue stream with a mouse click. However, I'm finding that while my code works some of the time, it frequently does not detect the mouse click. Additionally, sometimes when the mouse click is not detected, Unity seems to store the event and trigger it two (or three) times the next time the mouse is clicked, making the dialogue unreadable.

I have already confirmed that this script is only acting on one gameobject. It is also using Text, not GUIText. I'm fairly new to Coroutines, so I suspect the problem is somewhere in there.

 using UnityEngine;
 using System.Collections;
 using UnityEngine.UI;
 
 public class prologueCode : MonoBehaviour {

     public Text textBox, label;
     public TextAsset dialogue;
     string[] lines;
     int i = 0;
     public cameraFade cam;
     bool firstTime = true;
 
     public void Start()
     {
         if (dialogue != null)
         {
              lines = (dialogue.text.Split('\n'));
         }
     }
 
     public void LateUpdate () {
         if (firstTime)
         {
             cam.SetScreenOverlayColor(new Color(0, 0, 0, 1));
             cam.StartFade(new Color(0,0,0,0), 7);
             firstTime = false;
         }
         StartCoroutine(showDialogue());
     }
 
 
     IEnumerator showDialogue()
     {
         yield return new WaitForSeconds(7);
         textBox.text = lines[i];
         while (i < 9) 
         {
             yield return StartCoroutine(waitClick());
             textBox.text = lines[i];
              i++;
         }
     }
 
     IEnumerator waitClick()
     {
         while (!Input.GetMouseButtonDown(0))
         {
             yield return new WaitForEndOfFrame();
         }
     }
 }

If it helps to know, sometimes the array index manages to exceed the loop limit and triggers an outOfBounds exception.

Thanks for all the help!

Comment
Add comment · Show 1
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 justpassingby · Jun 08, 2016 at 04:55 AM 0
Share

So it looks I've managed to solve it somehow. It's catching every mouseclick now and not doing that weird doubleclick thing. I ended up changing the showDialogue and waitClick routines to the following:

 IEnumerator showDialogue()
     {
         yield return new WaitForSeconds(1f);
         textBox.text = lines[i];
         while (i <lines.Length-1) 
         {
             yield return StartCoroutine(waitClick());
             if (flag)
             {
                 i++;
                 textBox.text = lines[i];
                 flag = false;
             }
 
         }
     }
 
     IEnumerator waitClick()
     {
         while (!Input.Get$$anonymous$$ouseButtonDown(0))
         {
             yield return 0;
         }
         flag = true;
         yield return new WaitForEndOfFrame();
     }



This works, but if any one knows a better way (or can explain why this works and the one before did not), I'm all ears!

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by justpassingby · Jun 08, 2016 at 02:38 PM

More information! You still need the "yield return new WaitForEndOfFrame();" function in the waitClick corountine, but it turns out the main problem was that I put StartCorountine in update instead of start. As far as I can tell, this made the Corountine start from the beginning in each frame instead of from the yield statement. I've been able to remove the flag boolean now.

Comment
Add comment · Share
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

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

58 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

Related Questions

Inserting specific words into descriptions stored in XML 0 Answers

Dialogue Skipping Issues? 0 Answers

How can I update my dialogue text? 0 Answers

Best Practice For Storing RPG Dialogue? 1 Answer

How do I change text in timeline animation? 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