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 vinneyvinvin · Apr 28, 2018 at 12:37 AM · movementplayerplayer movementmovingdeath

How do you stop player from moving when it dies?

I watched this video about particle effects when the player dies

The problem is when my player dies it disappears but it is still moving and collecting coins. How do I stop this from happening?

 public class PlayerLevelManager : MonoBehaviour {
 
     private GameMaster gm;
     private PlayerController player;
 
     public GameObject currCheckpoint;
     public GameObject deathParticle;
     public GameObject spawnParticle;
 
     void Start () {
         player = GameObject.FindGameObjectWithTag ("Player").GetComponent<PlayerController> ();
         gm = GameObject.FindGameObjectWithTag ("GameMaster").GetComponent<GameMaster> ();
 
         gm.health = 5;
         gm.ammo = 2;
 
         Instantiate (spawnParticle, player.transform.position, player.transform.rotation);
     }
 
     public void Die () {
         StartCoroutine ("Respawn");
     }
 
     public IEnumerator Respawn () {
 
         gm.health -= 1;
 
         Instantiate (deathParticle, transform.position, transform.rotation);
         player.enabled = false;
         player.GetComponent<Renderer> ().enabled = false;
 
         yield return new WaitForSeconds (1);
 
         if (gm.health <= 0) {
             SceneManager.LoadScene (1);
             Instantiate (spawnParticle, currCheckpoint.transform.position, currCheckpoint.transform.rotation);
         }
 
         player.transform.position = currCheckpoint.transform.position;
         player.enabled = true;
         player.GetComponent<Renderer> ().enabled = true;
         Instantiate (spawnParticle, currCheckpoint.transform.position, currCheckpoint.transform.rotation);
 
     }
 
 }


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 TanselAltinel · May 03, 2018 at 03:16 PM 0
Share

Check if player is dead in your Player Controller and disable movement.

1 Reply

· Add your reply
  • Sort: 
avatar image
1

Answer by Veftaxop · May 03, 2018 at 03:33 PM

This is your problem here:

  player = GameObject.FindGameObjectWithTag ("Player").GetComponent<PlayerController> ();

Instead of caching the GameObject you are caching the script PlayerController. You should change it to:

 player = GameObject.FindGameObjectWithTag ("Player");

Keep in mind that this will change the variable player from PlayerController to GameObject. It will likely mean some conflicts in other areas of your code.

Also, you are not activating and deactivating properly. Instead of

  player.enabled = false;
  player.GetComponent<Renderer> ().enabled = false;

use

 player.SetActive(false);

to deactivate. To activate is self explainable. By deactivating the Renderer you are just making something invisible and not deactivating it. player.enabled is deprecated use SetActive(bool).

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 Remy_Unity · May 03, 2018 at 03:41 PM 0
Share

Or simply replace

   player.enabled = false;
   player.GetComponent<Renderer> ().enabled = false;

By:

   player.gameObject.SetActive(false);

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

136 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

Related Questions

Moving and rolling a cube 1 Answer

Player movement 1 Answer

player not moving over the bridge 1 Answer

Non slippery movement 1 Answer

Dash in movement direction, not in forward direction 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