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 AsPhAlT · Jun 11, 2015 at 05:41 AM · guistringscriptingproblemchatmessage

Textfield doesnt work; it doesnt apply string

Hello, i've got code like this:

 static string txt1 = " ";
     static string txt2 = " ";
     static string txt3 = " ";
     static string txt4 = " ";
     static string txt5 = " ";
     static string txt0;
     bool disTxt5=false;
     bool disTxt4 = false;
     bool disTxt3 = false;
     bool disTxt2 = false;
     bool disTxt1 = false;
     string stringToSend = " ";
 iWillWrite=false;
 
 int max =80;
 
 void Update()
     {
 if (Input.GetButtonDown ("chatTest")) {
             //string lol1 = "smth";
             //string lol2 = "isFckUp";
             PhotonView photonView = PhotonView.Get(this);
             photonView.RPC("addChatMessage", PhotonTargets.All, myName, stringToSend);
         }
 
         if(Input.GetKeyDown("return") && iWillwrite==true)
         {
             Debug.Log("update z wysylka dziala");
             sendMessageToAll();
         }
 
     }
 
 
 [RPC]
     void addChatMessage(string name, string text) {
         refreshChat = true;
         Debug.Log ("dostal ja cos");
         txt5 = txt4;
         txt4 = txt3;
         txt3 = txt2;
         txt2 = txt1;
         txt1 = (name + ": " + text);
         StartCoroutine(disableChat());
         disTxt1=false;
         disTxt2=false;
         disTxt3=false;
         disTxt4=false;
         disTxt5=false;
         //refreshChat = true;
     }
 
 void OnGUI()
     {
 if (refreshChat == true) {
             if(disTxt5==false)
             {
             GUI.Label (new Rect(0, (Screen.height*0.8F)+100, 100, 20),txt5);
             }
             if(disTxt4==false){
                 GUI.Label (new Rect(0, (Screen.height*0.8F)+80, 100, 20),txt4);}
             if(disTxt3==false){
                 GUI.Label (new Rect(0, (Screen.height*0.8F)+60, 100, 20),txt3);}
             if(disTxt2==false){
                 GUI.Label (new Rect(0, (Screen.height*0.8F)+40, 100, 20),txt2);}
             if(disTxt1==false){
                 GUI.Label (new Rect(0, (Screen.height*0.8F)+20, 100, 20),txt1);}
         }
 
         
         if (iWillwrite == true)
         {
 
             stringToSend = GUI.TextField(new Rect(0, (Screen.height*0.8F), 100, 20), stringToSend, max);
             if(Input.GetKeyDown("return"))
             {
             Debug.Log ("sTS: "+stringToSend);
             }
             //Willwrite=true;
             //}
             //
         }
     public void sendMessageToAll()
     {
         PhotonView photonView = PhotonView.Get(this);
         photonView.RPC("addChatMessage", PhotonTargets.All, myName, stringToSend);
         Debug.Log ("wysylam wiadomosc: "+stringToSend);
         stringToSend="";
         iWillwrite = true;
     }



Let me explain this. I create RPC addChatMessage where you can find 6 strings. All represents one line in chat, and the txt0 is receiving new message which replaces older. All calls to this function got 2 strings - name and text. Because of that in chat you can see "Nickname: randomMixOfWords". I tested it on chatTest button - it works pefrectly with strings lol1 and lol2. Later you can see stringToSend which should save the text(and it doesnt). When player hits enter key it should call function sendMessageToAll. There string is send to all players in game.

The problem is stringToSend. Somehow it doesnt work. When you replace in chatTest lol1 and lol2 with myName and stringToSend you will see in chat "Nickname: "(empty space). Propably I should confirm string but I have no idea how. What is funny when you shut down TextField and you'll relaunch it you will find that message is saved in window and you're able to see what you wrote last time.

Debug.Logs shows that script ends on OnGUI. What may be wrong?

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

Strange string appending 0 Answers

Building a Message Board 0 Answers

How do i take a string from a gui and show it in the gameworld c# 1 Answer

Number 0 not showing up in GUI.Button 2 Answers

Object reference not set... but... it is? 0 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