“Nonaktifkan persatuan kaku” Kode Jawaban

cara menonaktifkan dan mengaktifkan persatuan kaku

// 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-***-*-*-*-*-*-
Ninja Hatori Cat Codr

Nonaktifkan persatuan kaku

//This is for Unity (c#)
Rigidbody rb; //For 2D games use 'Rigidbody2D'
  
  void Awake ()
  {
      rb = GetComponent<Rigidbody>();
  }

  // (...)
rb.bodyType = RigidbodyType2D.Static;  // Deactivated
rb.bodyType = RigidbodyType2D./*The type the rigidbody was originally eg. dynamic, kinematic, or static*/; // Activated
Ju1.js

Unity RigidBody2D Nonaktifkan

//you can't :(
//you can delete it with
Destroy(RigidBody2D);
B33bo

Nonaktifkan persatuan kaku


 myPlayer.Getcomponent<Rigidbody>().isKenimatic == false;
 myPlayer.Getcomponent<Rigidbody().detectCollision = true;
 }

Adventurous Armadillo

Jawaban yang mirip dengan “Nonaktifkan persatuan kaku”

Pertanyaan yang mirip dengan “Nonaktifkan persatuan kaku”

Lebih banyak jawaban terkait untuk “Nonaktifkan persatuan kaku” di C#

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya