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 ReflexGames · Apr 18, 2016 at 04:17 AM · mobilegamescorekey

Getting Score Each Time Key is Destroyed

Hello

Each time I destroy a key by clicking on it, I want the Gui Text to show the score go up by one, and for the object to be destroyed, and at the end of the game, for the score to carry over to the winning scene or the losing scene. So I have to scripts, one is the Score Script, and it is attached to a Gui Text, displaying it on the screen. The other script is the one attached to the keys, and it is supposed to destroy the object and improve the score, but it is not doing either. I also do not know how to save the scores for the next level. Please Help.

Score Script:

 #pragma strict
  var Score3dText: UnityEngine.UI.Text;
 var score=1000;
 function Update(){
     Score3dText.text="Score : " + score.ToString();
 }





Here is the Key Destroy and Score Script:

 private var Score3Dtext: GameObject;
 function Start(){
     Score3Dtext= GameObject.FindGameObjectWithTag("ScoreBoard") ;
  
 }
   
 function Update () {
   
     if(Input.GetMouseButtonDown(0))
   
     {
   
         var hit: RaycastHit;
   
         var ray: Ray=Camera.main.ScreenPointToRay (Input.mousePosition);
   
   
   
         if(Physics.Raycast(ray, hit))
   
         {
   
             if(hit.transform.gameObject == this.gameObject)
   
             {
                 Score3Dtext.GetComponent(Score).score+=1;
                 Destroy(this.gameObject);
   
             }
   
         }
   
     }
 }
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

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by AnatolyDream · Apr 18, 2016 at 06:25 AM

I would use a Game Manager (or Score Manager, call it however you like). You can have it in all your scenes and access it from every other class. I'm sorry I'm not coding in JavaScript but I can show you an example in C#.

How I would do it:

  • Create a Game Manager with your score variable in it.

  • Attach the ray casting script to the main camera, NOT to the key object.

  • After ray hits a key, destroy that key (or maybe deactivate it) and add a point to your score (gameManager.instance.myScore += 1)

  • Update your GUI text to show gameManager.instance.myScore

Same way you can display your score in the final scene by just accessing the score variable inside your gameManager.

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 AnatolyDream · Apr 18, 2016 at 06:27 AM 0
Share

Not much of actual C# code though...hah. But you should understand it anyway.

avatar image ReflexGames AnatolyDream · Apr 20, 2016 at 03:13 AM 0
Share

Ok I will give it a try, thanks!

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

58 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Will Facebook Gameroom SDK work with mobile as well? 0 Answers

Hello Im making a Game for mobile and want two floating joysticks one on either side of the screen. 0 Answers

Basic Game Score Question. 1 Answer

Social.ReportScore not showing up on Leaderboard 2 Answers

How to keep score? 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