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 GreenTee · Jul 27, 2014 at 05:31 PM · javascriptgamescorecounter

Connecting 2 scripts(javascpt)?

Hello,

i want to ask how to link two scripts because i want to make a counter that is shown in a score box. I created a var "ScoreCounter" and a seperate script for my Score but i can't import the var form one script to the other

script for the GUI

 #pragma strict
 
 var Pos1 : float = 400;
 var    Pos2 : float = 15;
 var    Pos3 : float = 155;
 var Pos4 : float = 25;
 function Update () {
 
 }
 
 function OnGUI () {
     // Make a background box
     GUI.Box (Rect (Pos1,Pos2,Pos3,Pos4), "Score: " + ScoreCounter);
 }


script for the counter

 #pragma strict
 
 static var ScoreCounter : int = 0;
 var touchCoin : boolean = false;
 
 function Update () {
     if(touchCoin == true)
     {
         Destroy(gameObject);
         ScoreCounter += 1;
         Debug.Log("Destroy Coin and add 1");
     }
 }
 
 
 function OnCollisionEnter2D (coll: Collision2D)
 {
     if(coll.collider.tag == "Player")
     {
         touchCoin  = true;
         Debug.Log("Coin is touching");
     }    
 }

I hope somebody is able to help me :)

Greetings GreenTee

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
0
Best Answer

Answer by tanoshimi · Jul 27, 2014 at 05:54 PM

Seeing as ScoreCounter is static:

 GUI.Box (Rect (Pos1,Pos2,Pos3,Pos4), "Score: " + ClassInWhichScoreCounterIsDefined.ScoreCounter);
Comment
Add comment · 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 GreenTee · Jul 27, 2014 at 07:31 PM 0
Share

Thank you! You helped me alot !

avatar image
0

Answer by GlorifiedPig · Jul 27, 2014 at 06:25 PM

 #pragma strict
  
 static var ScoreCounter : int = 0;
 var touchCoin : boolean = false;
 var Pos1 : float = 400;
 var Pos2 : float = 15;
 var Pos3 : float = 155;
 var Pos4 : float = 25;
  
 function Update () {
     if(touchCoin == true)
     {
         Destroy(gameObject);
         ScoreCounter += 1;
         Debug.Log("Destroy Coin and add 1");
     }
 }
  
 function OnCollisionEnter2D (coll: Collision2D)
 {
     if(coll.collider.tag == "Player")
     {
         touchCoin  = true;
         Debug.Log("Coin is touching");
     }
 }
 
 function OnGUI () {
     // Make a background box
     GUI.Box (Rect (Pos1,Pos2,Pos3,Pos4), "Score: " + ScoreCounter);
 }

Use that code in 1 script.

Comment
Add comment · 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 GreenTee · Jul 27, 2014 at 07:32 PM 0
Share

its also good, but i want to seperate the scripts, because i think a counter sholdn't be added to a coin :p

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

Can someone help me fix my Javascript for Flickering Light? 6 Answers

Setting Scroll View Width GUILayout 1 Answer

Trying to get score counter... 2 Answers

The name 'Joystick' does not denote a valid type ('not found') 2 Answers

I need help with a script(brauche hilfe mit einen Script) 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