I am facing a bizarre situation that is, I have made NGUI panel with sprites and labels and these are working fine on unity editor but when I make a build on iOS device sprites are working as expected but labels are being shown for 0.2 or 0.3 second and then fade out suddenly . can anybody tell me what may be the problem ?
NGUI labels are fading out on iOS device
686 Views Asked by Ankush At
1
There are 1 best solutions below
Related Questions in UNITY-GAME-ENGINE
- Using arrow keys to rotate an object
- know object behind another object is fully visible
- Unity3d AudioSource not creatable
- Unity3d - Input.GetKey returns true more than once
- Flurry Ads on Unity3D with Prime31 plugin
- Make screenshot of DirectX window that is hidden and doesn't have focus
- Coroutine being detected as inactive despite being active
- Unity3D: Adding charged force in relation to position
- Unity - Particles emitting non-random
- 3d mouse aim camera 3rd person vertical C#
- Unity: How would I go about creating a power up system?
- Unity - Gui Button issues (Android)
- Unity3d strange Collider behaviour
- Start() function doesn't work properly after Application.LoadLevel
- Gravity works weird
Related Questions in LABEL
- some labels appear gray in Visual Studio 2010
- Retrieving string value from label and then parsing into an integer, pyqt4
- Stata: Retrieve variable label in a macro
- SAS proc sql - how to read in log of variable but retain the variable's label
- Labelling nodes in networkx
- Trouble dynamically changing state of checkbox with AJAX
- C++ Qt How do you make a label display a movie (gif) that you created using the form?
- JavaFX PiChart, my hover values blink
- JavaFX : Put chemical formula into Label
- Matlab insertObjectAnnotation labels error
- How to concatenate string with line breaks, all to be printed in a single label?
- Matplotlib axis time formatter
- C# : Label is not showing data
- jFreeCharts large number label display
- JavaFX Thread - Error on specific component (Label)
Related Questions in FADEOUT
- Div going through fade in/fade out cycle blinks abruptly
- jquery fadeOut on future element
- Why is my images no fadding out?
- Fade out divs one at a time using JQuery
- Delay fadeOut menu jquery
- jQuery FadeOut FadeIn
- Fade In Out with Hover Effect
- How to make an image fade out by itself in a few seconds?
- Fade In & Out Interval
- Fade In & Out Interval Javascript
- jQuery pagination and fadein/fadeout
- Onmouseenter/Onmouseleave fadeOut wont work
- Jquery fadeOut function not properly working sometimes
- Remove class with a fadeout after a Timeinterval is completed?
- Toggle, fade in, fade out. Open slider and change content
Related Questions in NGUI
- NGUI in Unity 3D where to get skins
- Angular 4 @ngui-autocomplete
- NGUI in Unity what code to a button to go to the next scene
- NGUI in Unity what code to a start button to go to the Second scene
- how can I add Spring effect to Button like the button in hay day?
- NGUI elements are being shown as black area in iPod4 and iPhone4
- Screen height gets smaller when using UIInput and Android
- How to identify the different prefab items in Unity3D?
- How to determine active child and get data in NGUI
- Unity NGUI add new Sprite in Atlas and goes out wrong with offset Problem
- Texture offset in atlas to create an animated sprite with NGUI
- How to Fix Resolutions Globally in Menu by Using NGUI in UNITY3D?
- How to calculate widget bounds?
- NGUI labels are fading out on iOS device
- Method Assignment to Tween Event with Different ways
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If your labels and sprite are on the same depth, then it probably is a depth issue.
The reason why it looks good in the editor, could be different z sorting on different platforms. On mobile platforms it could be even more random, on different runs.
If you want something to be above other widget, it should have higher depth value (assuming you are using the new 3.x.x NGUI), than you will be certainly sure that it will look good on all platforms.
On the older 2.x.x NGUI not only depth is important, but also a source texture (is it the same or are there two different textures) and a position z value.