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 - KingPeas

Pages: [1]
1
NGUI 3 Support / Free NGUI license question.
« on: July 11, 2014, 06:18:58 AM »
I'm doing a demo for a small plug-in AssetStore.
Can I use to create an interface Free NGUI ver 2.0.1 ::)?

2
NGUI 3 Support / Re: Question by UIButtonScale, UIButtonColor end etc.
« on: March 19, 2013, 11:07:45 PM »
Use 2.3.3.
Update to 2.3.6
If change enabled to false after awake and before start then components UIButtonScale, UIButtonColor end etc working with error.

resolve
  1. void OnDisable ()
  2.         {
  3.                 if (tweenTarget != null && mStarted) //if (tweenTarget != null)
  4.                 {
  5.                         TweenColor tc = tweenTarget.GetComponent<TweenColor>();
  6.  
  7.                         if (tc != null)
  8.                         {
  9.                                 ...
  10.                         }
  11.                 }
  12.         }

3
NGUI 3 Support / Question by UIButtonScale, UIButtonColor end etc.
« on: March 15, 2013, 06:52:42 AM »
Hello. I had a problem: some objects had been deactivated before function Start was called. Because of that there was no correct initialization of gameobject. And when OnDisabled was later called default value of scale, color and etc reset. When I activated gameobject later the default values (scale, color, ...) are not correct. Why do you use Start() instead of Awake()? Is it Bug?

Pages: [1]