Tasharen Entertainment Forum

Support => NGUI 3 Support => Topic started by: realblues on May 19, 2012, 10:28:00 AM

Title: My Custom variable not visible in inspector
Post by: realblues on May 19, 2012, 10:28:00 AM
I added following code in UiSpriteAnimation.cs

  1. public enum LoopType
  2. {
  3.     Once,
  4.     Loop
  5. }
  6. public LoopType loopType;
  7.  

but loopType not visible in the inspector.  what should I do?
Title: Re: My Custom variable not visible in inspector
Post by: ArenMook on May 19, 2012, 11:35:39 AM
You need to modify UISpriteAnimationInspector as well.
Title: Re: My Custom variable not visible in inspector
Post by: realblues on May 19, 2012, 09:37:55 PM
It doesn't looks easy, but Thaks  :)