• 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
Question by Ende · Feb 03, 2010 at 09:30 PM · gameobjecttransformprefabvariableinstance

How can I modify a variable on an instance of a prefab after I created it?

When I manually add the script

var degrees = 20;

function Update() { transform.RotateAround (Vector3.zero, Vector3.up, degrees * Time.deltaTime); }

to the prefab itself I can get the rotation to work. However, when I try and add the rotation inside t$$anonymous$$s prefab creation script I can not get it to work. Moreover, would t$$anonymous$$s have to be inside a update function or how would I get it working all the time?

Essentially what I am trying to do is to slow the rotation as prefab are plotted further away from a given origin. Any help would be greatly appreciated.

var planetPrefab: GameObject;

function Start() { j = 10; w$$anonymous$$le (j < 100) { var cloneplanet: GameObject; if (planet_class <=100) { cloneplanet = Instantiate(planetPrefab, Vector3(sx, sy , sz + j), Quaternion.identity); // I want to modify the 'degrees' variable of the script attached to 'cloneplanet' here! j = j + 5; }
} }

Comment
Niven
duck

People who like this

2 Show 0
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

2 Replies

· Add your reply
  • Sort: 
avatar image
Best Answer

Answer by duck · Feb 03, 2010 at 10:48 PM

Each time you create an instance of the prefab, set the 'degrees' variable after creating it, like t$$anonymous$$s:

cloneplanet.GetComponent(NameOfFirstScript).degrees = 50/j;
Comment
Ende

People who like this

1 Show 1 · 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 Ende · Feb 03, 2010 at 10:58 PM 0
Share

Thank you - I was close but not close enough.

avatar image

Answer by Jaap Kreijkamp · Feb 03, 2010 at 10:50 PM

If you want to have it permanently attached to the prefab (making it part of the prefab), just add the script to the prefab in the scene, next do menu GameObject -> Apply changes to prefab. You can set the degrees value using:

GetComponent(NameOfScript).degrees = 50 / j;

If you want to add script at runtime you can do:

Make sure the RotateAround script name has no spaces in there and preferably start with an uppercase letter. In the code example below I assume you named it RotateAround.

function Start() {

 j = 10;

 w$$anonymous$$le (j &lt; 100) { 

     var cloneplanet: GameObject;

     if (planet_class &lt;=100) {
         cloneplanet = Instantiate(planetPrefab, Vector3(sx, sy , sz + j), Quaternion.identity);
         RotateAround rotateAround = cloneplanet.gameObject.AddComponent(RotateAround);
         rotateAround.degrees = 50 / j;

         j = j + 5;
     }           
 }

}

Comment
Ende

People who like this

1 Show 0 · 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.

Welcome to Unity Answers

If you’re new to Unity Answers, please check our User Guide to help you navigate through our website and refer to our FAQ for more information.

Before posting, make sure to check out our Knowledge Base for commonly asked Unity questions.

Check our Moderator Guidelines if you’re a new moderator and want to work together in an effort to improve Unity Answers and support our users.

Follow this Question

Answers Answers and Comments

No one has followed this question yet.

Related Questions

Is it possible to set up a prefab variable such that it can only be modified on the prefab and not on the instance? 3 Answers

Access variable from script on other gameobject. 1 Answer

Can't remove instantiated prefab 0 Answers

Affect All Instances Of A Prefab 3 Answers

Why this Texture gives value of Null when I access it from other script 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