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 TheDavyStar · Jul 03, 2015 at 07:41 AM · c#2ddestroyintvalue

Increase score upon an enemy's death

So I have been consistently trying (and failing) to create a game with a score counter that increases by 1 upon each enemy being destroyed. In each case, however, the score value (which is an int) remains at 0. The enemies are spawned by an object (EnemySpawner) which is constantly in the scene. I am trying create the code regarding the score in the EnemySpawner. Here is the code I am trying to use: void Update () { if (enemyPrefab == null) { score += 1; } } The score simply doesn't increase. Is it something to do with the fact that the enemy object is a prefab and doesn't appear in the scene until the spawner Instantiates it?

Comment
Add comment · Show 1
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 Hellium · Jul 03, 2015 at 09:03 AM 1
Share

Have you made any research before co$$anonymous$$g here ?

If I write on Google the EXACT same thing you set as title, I find this :

https://unity3d.com/learn/tutorials/projects/survival-shooter/scoring-points

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by alok1974 · Jul 03, 2015 at 08:20 AM

score handling should be preferably done with a separate gamemanager class (usually a singleton). Whenever you destroy the enemy, broadcast an event. The game manager should subscribe for this event and when triggered should increase the score by one.

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 Michael_-01-_ · Jul 03, 2015 at 09:19 PM

Make a script on the enemy and when you call destroy, send a message to the player to add to the score, try something like this.

C# float Health; GameObject Player;

 void Start()
 {
    Player = GameObject.FindObjectWithTag("Player");
    Health = 100;
 }
 
 void Update()
 {
    if( Health <= 0)
    {
       DES();
    }
 }
 
 void DES()
 {
    Player.SendMessage("AddScore", SendMessageOptions.DontRequireReceiver);
    Destroy( gameObject);
 }

And then in your player's script just add a function

 int Score;
 
 void AddScore()
 {
    Score += 1;
 }


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 YoungDeveloper · Jul 03, 2015 at 09:20 PM 0
Share

This is a very bad example and should not be used as a reference.

avatar image TheDavyStar · Jul 03, 2015 at 09:55 PM 0
Share

Yeah, I was trying this and when I implemented it properly the score simply didn't go up. It remained at 0. I really don't get it.

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Destroying Screen Wrap Ghosts That Pass Off The Left Of Screen 0 Answers

Have a problems with a values 1 Answer

Destroy object on touch of object with specific class 3 Answers

Multiple Cars not working 1 Answer

Simple on Collision Help (C#) 2 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