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.


Messages - nunteng21

Pages: [1]
1
Thankyou All

2
i used to use transparentcolor shader of NGUI sprites
i think of best performance PMA shader more than transparentcolor shader
is it true?
or same performance?

3
NGUI 3 Support / i can't see Text "[SS]" in UILabel Component
« on: September 06, 2014, 12:07:15 AM »
i have NGUI version 3.7.1
Do it for Test
1. open the NGUI->Examples->Scenes->Example 0 - Control Widgets
2. in the hierarchy
UIRoot
...Label Click

Change the Label Text

Before : You can use BBCode to make words bold, italic, underline, strikethrough,
sub or sup script, and even embed hidden content and clickable hyperlinks. Go ahead, click it!

After : [Yo]u can use BBCode to make words bold, italic, underline, strikethrough,
sub or sup script, and even embed hidden content and clickable hyperlinks. Go ahead, click it!


i can't see [Yo] Text in UILabel on Sceneview and Gameview

i can't see 2words between [ ]

sorry i am not good english..

if you do test then you know what i mean..

4
NGUI 3 Support / Bug 3.7.1 UISlider when OnPressForeground
« on: August 26, 2014, 01:10:57 PM »
UISlider

added code

mCam = UICamera.currentCamera;

My fix:
  1. protected void OnPressForeground (GameObject go, bool isPressed)
  2. {
  3.         if (UICamera.currentScheme == UICamera.ControlScheme.Controller) return;
  4.          mCam = UICamera.currentCamera;          << added code
  5.          if (isPressed)
  6.          {
  7.                mOffset = (mFG == null) ? 0f :
  8.                value - ScreenToValue(UICamera.lastTouchPosition);
  9.          }
  10.         else if (onDragFinished != null) onDragFinished();
  11. }
  12.  

Pages: [1]