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 Ryoshi217 · Aug 20, 2012 at 11:48 PM · c#variables

How do you access other Variables on other scripts c#

hey guys i need some help with accesing a variable from another script. here is my script. oh, and my variable i need to access is called "timer" thanks for the help. here is my script.

public class monkeymovescript : MonoBehaviour {

// Use this for initialization void Start () { } void Update () { transform.Translate (Vector3.right); //this line is probably where you acesss the variable if (timer > 3) { transform.Translate (Vector3.left); } } }

Comment
Add comment · Show 4
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 DaveA · Aug 20, 2012 at 11:49 PM 1
Share

PLEASE PLEASE PLEASE Read the manual, it's in the front. And PLEASE use the Search box here.

avatar image Ryoshi217 · Aug 21, 2012 at 05:51 AM 0
Share

what do you mean?

avatar image Kryptos · Aug 21, 2012 at 08:41 AM 0
Share

What @davea meant is that this question is the most asked question on Unity Answers.

The point of this website is not to offer support but to create a knowledge database. So before asking always search for similar question.

avatar image Ryoshi217 · Aug 21, 2012 at 08:53 AM 0
Share

oh sorry about that. I actually did look at similar questions but they did not exactly explain what i wanted to do.

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by mohanrao164 · Aug 21, 2012 at 06:14 AM

this is your script

public class monkeymovescript : MonoBehaviour {

void Start () { } void Update () { transform.Translate (Vector3.right);

if (timer > 3) {

transform.Translate (Vector3.left);

} } }

if u want to call timer in another script without initalization

here is the method

public class myscript: MonoBehaviour {

private monkeymovescript mms;

void Start () {

mms = (monkeymovescript )FindObjectOfType(typeof(monkeymovescript ))

}

void Update () {

if(mms.timer >3){

//your code } }

like this you access other Variables on other scripts c#

Comment
Add comment · Show 2 · 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 Ryoshi217 · Aug 21, 2012 at 06:28 AM 0
Share

umm it comes up with this error,

Assets/monkeymovescript.cs(16,25): error CS1061: Type `monkeymovescript' does not contain a definition for `timer' and no extension method `timer' of type `monkeymovescript' could be found (are you missing a using directive or an assembly reference?)

avatar image mohanrao164 · Aug 21, 2012 at 06:30 AM 0
Share

did u declare timer in 'monkeymovescript' script. the timer should be declare public like public int timer;

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

10 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

Related Questions

Multiple Cars not working 1 Answer

Object reference not set to an instance of an object 0 Answers

A node in a childnode? 1 Answer

Distribute terrain in zones 3 Answers

how to reference a javascript variables in a c# code. 0 Answers


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