- Home /
 
Photon Chat Change Order
I'm using as base Marco Polo demo to make my fps, i'm begginer at arrays and i cant change the order that the lines of chat are displayed. who can help me? chat GUI:
 scrollPos = GUILayout.BeginScrollView(scrollPos);
         GUILayout.FlexibleSpace();
         for (int i = messages.Count - 1; i >= 0; i--)
         {
             GUILayout.Label(messages[i]);
         }
         GUILayout.EndScrollView();
 
              
               Comment
              
 
               
              Your answer
 
             Follow this Question
Related Questions
Photon Networking: RPC call doesn't work over other clients 0 Answers
Photon Network Muzzleflash 0 Answers
Photon View - Player Names/Properties. 1 Answer
Photon PunRPC problem 0 Answers