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
- How to use invokerepeating and make ui text fade in/out over time?
- Player input not working properly in unity
- Get block in Mesh Unity
- Does Unity render invisible material?
- Physics.OverlapSphere couldn't detect my ‘Player’
- Cannot sync non-player objects in Unity mirror
- How to script a simple collision using hands in OVRCameraRigInteraction?
- Drawing on 3D object at Unity
- How to Override Spline Rotation for Player-Controlled Car in Racing Game?
- Why doesn't my enemy shield take damage first. Instead both enemy and shield are being destroyed together
- unity + Vuforia balck screen in android AR app
- how do I change an objects tag when the game closes
- How to remove white space in a user's input through an input field in Unity?
- Timeline doesn't start eventhough it recognises the trigger input
- Ragdoll 2D Aiming
Related Questions in LABEL
- How to Make MUI TextField label behave as default whilst having a Start Input Adornment
- Are C labels instructions or constants
- How to label each points in seaborn catplot with y values
- Why cannot I set font of `xlabel` in `plotmf` in MATLAB?
- Adjust labels on individual nodes in Sankey diagram using ggsankey
- Predict numbers from labeled images
- How to apply style if an input field is empty just only using CSS?
- How to retrieve the row/column names of a matrix in DolphinDB?
- How do I import images and labels stored in 2 different folders?
- Improve accuracy of yolov8 model
- Change font size for ggplot2 figures (axes titles, labels and numbers)
- Labels not Displaying on Scatterplot?
- How to number equations in braces
- Prometheus relabeling configureation incremental counter
- How to specify different colors for column labels in altair
Related Questions in FADEOUT
- Jquery fadeOut does not stay hidden
- why Text is not horizontally centered?
- After audio loop smooth start/end, starting smooth another loop by click
- JQuery render partial with nice fade in/out effect?
- Why does my screen fade effect only happen once?
- Fade-in and Fade-out animation methods with pure javaScript code
- Slowly hide a banner on scroll down and bring back on scroll to top of page
- decrease the opacity js
- css won't transition after jquery fade out
- Fade-in fade-out exactly once
- is anyone solved animation error in javascript
- JavaScript help in animation
- Fading RGB light from yellow to red using reed switch
- How to add fade out after few seconds in append content in javascript
- about JavaScript help to implement fade-in and fade-out animation
Related Questions in NGUI
- Unity NGUI add new Sprite in Atlas and goes out wrong with offset Problem
- Is it possible to change model variable value in view/ HTML in Angular?
- Execute NGUI button press from script in unity C#
- how to use Raycast NGUI in RTS Game?
- How to make a 3D scroll view with NGUI
- Changing a Inputfields with Tab in Mobile version of keyboard. (C#, NGUI)
- Show password button(Unity NGUI / C#)
- I want angular 4 ng2-ui/map places-auto-complete restricted to a specific country
- Click Event Always getting only the last instantiated object (C# UNITY)
- ScrollView using Button (NGUI C# UNITY)
- Deleting Children in NGUI
- Get Json Data and parse the data individually (c# unity)
- Trying to customize NGUI - UIButton in the Inspector
- OnMouseDown should not work over NGUI
- Compare two functions (Checkbox) Unity
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 # Hahtags
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.