Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 JakoDev · Oct 28, 2016 at 02:00 PM · c#prefabprefabsguitextprefab-instance

Link GUIText to a prefab?

I'm trying to initiate a prefab which needs a link to my GUIText Object. I really dont know what to do... I had my player as an Object in the Hierarchy but now I need to make a prefab of it, so this is where I left off before creating a prefab:

 class ..... 
 public GUIText speedDisplay;
 
 void update(){
  updateSpeed();
 }
 
  public void updateSpeed()
     {
         speedDisplay.text = "Speed: " + (int)speed+", "+(int)((speed/maxSpeed)*100)+"% of max";
     }

Comment
Add comment · Show 2
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
avatar image kleber-swf · Oct 28, 2016 at 02:04 PM 0
Share

Is the GUIText object you are referencing into the prefab inside the prefab's hierarchy?

avatar image JakoDev kleber-swf · Oct 28, 2016 at 02:12 PM 0
Share

I dont really know what you mean but no it's not and I cant drag it in. Obviously. Isn't there a way to connect them with code?

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by kleber-swf · Oct 28, 2016 at 06:33 PM

You can't create a prefab with a reference to something outside it's own hierarchy. For example: if you have a scene like this:

alt text

And reference the GUI Text inside the Prefab, the reference isn't saved because Unity cannot get the instance of that GUI Text in other scenes, for example. To make this work, GUI Text need to be inside the Prefab's hierarchy, like this:

alt text

But! If your reference is intent to be dynamic, you could add a tag (let's say named "tag") to the GUI Text and find it with:

GameObject.FindGameObjectWithTag("tag")

Remember to cache it in Start() method if you use the object often because FindGameObjectWithTag is kinda heavy.


1.png (26.0 kB)
2.png (25.9 kB)
Comment
Add comment · Share
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
avatar image
0

Answer by $$anonymous$$ · Oct 28, 2016 at 04:17 PM

First off, I want to point out that GUIText is outdated. You should use Text Instead.

If theText is on an object that has a specific tag, you can do this:

 using System.UI;
 public Text exampletext;
 
 void Start(){
     exampletext = GameObject.FindGameObjectWithTag("taggoeshere").GetComponent<Text>();
 }

GameObject.FindGameObjectWithTag gets the gameobject in the scene that has the tag you want, and then GetComponent() gets the component of the Text type from the GameObject.

Comment
Add comment · Share
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

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Script is reading from prefab instead of instance 1 Answer

Creating a weapon database from prefabs 1 Answer

Cant delete clones of prefab 1 Answer

How can i add all the prefabs in the assets directory and sub directories to List or Array ? 0 Answers

How to Instantiate prefab when dragging an object through a specific area? 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