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 Rastaf · Aug 24, 2011 at 06:43 PM · globalbooglobalvariables

Global Variables: import script (boo)

I made a script GameData.boo in a folder "Scripts" under "Assets", holding a static class with variables:

 static class GameData():
  myVar = 'xy'

I can access this variable "myVar" from another script, using import

 import GameData
 Debug.Log('myVar: ' + myVar)

This works fine, so far, so long as the script is in the same folder as GameData.boo.

I tried to access the Class "GameData" from another script (this one is under "Scripts" in the First Person Controller), and I get the error message "Namespace 'GameData' not found, maybe you forgot to add an assembly reference'.

I'm not sure what the error message means. As the import worked fine if the script was in the same folder, maybe I have to reference the imported scripts in the import statement. I'm just witless how to do this. I tried:

 import Scripts.GameData
 import GameData from Scripts
 import GameData from Assets.Scripts
 import GameData from "Assets/Scripts"

Or is there just no way?? ;)

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

2 Replies

· Add your reply
  • Sort: 
avatar image
1

Answer by Joshua · Aug 25, 2011 at 08:21 AM

The reason is indeed compilation order. If you reference ClassName.StaticVarName from a script written in a different language you need to make sure that that specific script is compiled earlier then the script from which you're referencing it, else the compiler will try to reference it but won't be able to and throw an error 'are you missing an assembly or reference?'

If you follow the link I above you saw that script in folders in the root of your project named "Standard Assets" and "Plugins" are compiled earlier. The first one is so you can reference all of Unitys standard scripts from any language, the second one is so you can reference plugins. So as you already found, if you drop your script in those folders you can then reference that script from scripts in other languages.

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 Rastaf · Aug 25, 2011 at 06:37 AM

So, I figured out how it works, although I'm not completely sure why!

I changed the location of GameData.boo from Assets/Scripts to Assets/Standard Assets/Character Controllers/Sources/Scripts.

The import statement is completely unnecessary, it is as explained in the documentation: ScriptName.ClassOrVarName.

It even works with the script in my first (splashscreen) scene, in which the Character Controller is not used!

So it must be about script paths or script loading order, I guess.

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Global Variables with Prefabs/ Self-Naming Variables 2 Answers

Calling a function across all instances of an object 2 Answers

BCE 0005 unknown identifier error when accessing global variable. 5 Answers

PlayerPrefs are global? 3 Answers

Global update function for network 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