Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - chiuan

Pages: [1]
1
TNet 3 Support / Does Tnet3 support UDP for P2P game?
« on: February 29, 2016, 10:45:34 AM »
Does Tnet3 support UDP for P2P game? :)
thanks !

2
 :'(

  1.         void refreshServerList()
  2.         {
  3.                 for(int i =0 ; i < PomeloManager.Self.gameServerList.Count; i++)
  4.                 {
  5.                         createServerItem(PomeloManager.Self.gameServerList[i]);
  6.                 }
  7.                 //tableServer.repositionNow = true;
  8.                 tableServer.Reposition();
  9.                 scrollViewServer.ResetPosition();
  10.         }
  11.  
  12.         void createServerItem(PomeloManager.GameGate gate)
  13.         {
  14.                 //GameObject go = Instantiate(templateServerItem.gameObject) as GameObject;
  15.                 //go.transform.parent = tableServer.transform;
  16.                 //go.transform.localScale = Vector3.one;
  17.  
  18.                 GameObject go = NGUITools.AddChild(tableServer.gameObject, templateServerItem.gameObject);
  19.                 go.SetActive(true);
  20.                
  21.                 UIGameServerItem item = go.GetComponent<UIGameServerItem>();
  22.                 item.gate = gate;
  23.                 serverItems.Add(item);
  24.         }
  25.  

scroll(Contain UIPanel & UIScrollView Components) nothing show On Drawcall popup window. but, i found the children all draw by 3_ServerList(UIPanel).

3
NGUI 3 Support / UIPanel and drallcall?
« on: September 10, 2013, 09:18:37 PM »
one UIPanel contain 1 drallcall,if duplicate some of this UIPanel item,mean more drallcall??

root
-uipanel - 1drallcall

after duplicate the same uipanel.

root
-uipanel - 1drallcall
-uipanel - 1drallcall
-uipanel - 1drallcall
-uipanel - 1drallcall

still 1 drallcall???

4
 :)hey guys,i have make emoticon supported for dynamic font.
here is pic,please take a look.



and here are packages,install those with NGUI2.6.1.
for more details,I will update later.... ;)

Pages: [1]