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
1
Question by charliepup03 · May 20, 2020 at 07:39 PM · script.scorepong

Score not updating

public class CountScore : MonoBehaviour {

 public Text Scoreboard;
 public GameObject ball;


 private int leftPaddleScore = 0;
 private int rightPaddleScore = 0;


 // Start is called before the first frame update
 void Start()
 {
     ball = GameObject.Find("Ball");
 }

 
 void OnTriggerEnter2D(Collider2D collision)
 {
     if (collision.gameObject.name == "leftGoal")
     {
         rightPaddleScore++;
     }

     if (collision.gameObject.name == "rightGoal")
     {
         leftPaddleScore++;
     }

     Scoreboard.text = rightPaddleScore.ToString() + " - " + leftPaddleScore.ToString();

     print(rightPaddleScore + " , " + leftPaddleScore); 
 }
 

}

Comment
Add comment · Show 6
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 blinkafrootable · May 20, 2020 at 07:51 PM 1
Share

What GameObject in your scene is this script attached to? You can't use OnTriggerEnter2D on any object other than the two that are supposed to collide with one another and maybe that's why your script isn't working

avatar image charliepup03 blinkafrootable · May 20, 2020 at 07:57 PM 0
Share

thank you so much I had to put the script on my ball object as well

avatar image tadadosi · May 20, 2020 at 08:00 PM 2
Share

This is a repeated question that already has answers, if you still have this issue, you should check your previous question and keep asking there.


https://answers.unity.com/questions/1732580/scoreboard-not-updating.html?childToView=1732609#comment-1732609

avatar image charliepup03 tadadosi · May 20, 2020 at 08:02 PM 0
Share

you didn't help me very much when I had the same question

avatar image tadadosi charliepup03 · May 20, 2020 at 08:15 PM 1
Share

I actually told you that a way to achieve it could be adding the script to your paddle and just checking with a tag if the ball was the object that hit your paddle trigger. If you had to add this script to your ball as well, you are actually not understanding how OnTriggerEnter2D works. The object that has this script must has his collider isTrigger checked and a rigidbody, and any other object with a collider can activate this method, if one of both objects have a rigidbody, it will work.

avatar image PlusEqual · May 20, 2020 at 08:12 PM 0
Share

The code seems ok, the problem must be in the hierarchy, review where the scripts are attached and the game objects names :P

0 Replies

· Add your reply
  • Sort: 

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

160 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 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 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

Score no longer works after backing up my game 0 Answers

Script for counting score in Archery game working weird 2 Answers

How can I make my score editable? 1 Answer

After I initially add score it keeps adding. 2 Answers

how can i show my high score scored in game? 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