how to removes the rigidbody from the game object
// Removes the rigidbody from the game object
Destroy (rigidbody);
how to removes the rigidbody from the game object
// Removes the rigidbody from the game object
Destroy (rigidbody);
how to disable and enable rigidbody unity
// if you want to disable the rigidbody on which the script is sitting on
// you can't do that but you can go around it by
// Just destroying the rigidbody by calling
Destroy(gameObject.GetComponent<Rigidbody>());
// and if you want it again call
gameObject.AddComponent<Rigidbody>();
// Remember "gameObject" with small 'g' reffers to the gameObj on which the script
// is sitting on
// -*-*-*-*-*-***-HAPPY CODING-***-*-*-*-*-*-
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us