Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by avi_75 · Apr 06, 2021 at 11:35 AM · guiunityeditorunityui

my ui score only works in editor but not in build version of the game

so initially my ui score and timer was working properly in the build and in the editor but after I followed a tutorial about mobile optimization since then the ui does does not work in build i do not thing it is a script problem because it was working before and when i was optimizing i did not touch the code at all mobile optimization tutorial : https://www.youtube.com/watch?v=ysk7ATmIeOs

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 using UnityEngine.UI;
 
 public class GameManager : MonoBehaviour
 {
    
     public static GameManager inst;
     public Text timerText;
    public float startTime;
      PlayerDestroyer playerDestroyer;
     public string seconds;
     public int secondsInt;
     public Image timeImage;
     PlayerMovemnt playerMovemnt;
     public Text speedText;
     public Image speedImage;
     public float t;
     public string stSpeedText;
     public string minutes;
     string  stLifeCount;
     public Image warningImage;
     public Text warningText;
     string playerSpeedMultiplied;
     public  int multipliedSpeedAmount;
 
 
 
 
    
 
      void Start()
     {
         
         startTime = Time.time;
         playerDestroyer = GameObject.FindGameObjectWithTag("Player").GetComponent<PlayerDestroyer>();
         playerMovemnt = GameObject.FindObjectOfType<PlayerMovemnt>();
       
     }
 
     // Update is called once per frame
     void Update()
     {
         if (playerDestroyer.timerFinished == true)
             return;
 
         float t = Time.time - startTime;
         minutes = ((int)t / 60).ToString();
         seconds = (t % 60).ToString("f1");
         timerText.text =  minutes + ":" + seconds;
         SpeedText();
         WarningText();
     }
 
     private void Awake()
     {
         inst = this;
 
     }
 
     public void TimeStopColor()
     {
         timerText.color = Color.red;
         speedText.color = Color.red;
     }
 
     public void ImageTimeColor()
     {
         timeImage.GetComponent<Image>().color = new Color(1, 0, 0.0173f, 0.2784f);
         speedImage.GetComponent<Image>().color = new Color(1, 0, 0.0173f, 0.2784f);
         warningImage.GetComponent<Image>().color = new Color(1, 0, 0.0173f, 0.2784f);
 
 
 
     }
 
     public void SpeedText()
     {
         playerSpeedMultiplied = (playerMovemnt.constantVelocity * multipliedSpeedAmount).ToString();//* multipliedSpeedAmount
         stSpeedText = playerSpeedMultiplied;
         speedText.text = $": { stSpeedText}";
     }
 
     public void WarningText()
     {
         stLifeCount = playerDestroyer.stWarning.ToString();
         warningText.text = "X " + stLifeCount;
 
     }
 
 
 }






Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

194 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Editor Style permanently changed, how to change back? 2 Answers

Multi resolution GUI From 1920x1080 source to all lower resolutions (canvas scaler dead end) 0 Answers

How do I display a texture in the scene view? 1 Answer

Converting from EditorWindow to runnable window 1 Answer

Align text into PropertyField 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges