Answers for "get component unity"

2

getcomponent c#

//First script 
public class Enemy : MonoBehaviour{
  public int health = 10;
  public void saySomething(){
    Debug.Log("Hi, i am an enemy.");
  } 
}
//Second script
//There is one thing though,
//if the script is located on another gameobject,
//which will be most likely, you have to somehow
//find that gameobject first. There are many ways of
//doing it, via raycast, collision,
//trigger, find by tag, find by gameobject etc.
//But i will use the simplest way to understand,
//that is declaring public GameObject in player script,
//which contains Enemy, and later you just drag and drop the
//gameobject in the inspector.
public class Player : MonoBehaviour{
  //Drag and drop gameobject with script Enemy in inspector
  GameObject enemyGameObject;
  void Start(){       
    //We get Enemy component - script
    //from public gameobject which contains this script
    Enemy enemyScript = enemyGameObject.GetComponent<Enemy>();
    //This will debug Enemy health is: 10  
    Debug.Log("Enemy health is:"+ enemyScript.health)  
      //This will debug "Hi, i am an enemy." 
      enemyScript.saySomething();  
  } 
}
Posted by: Guest on May-26-2020
7

unity get component

using UnityEngine;

public class TryGetComponentExample : MonoBehaviour
{
    void Start()
    {
    	// Since Unity  2019.2 you can use TryGetComponent to check
        // if an object has a component, it will not allocate GC in 
        // the editor if the object doesn't have one.
        if (TryGetComponent(out Rigidbody rigidFound))
        {
        	// Deactivate rigidbody
            rigidFound.enabled = false;
        }
        
		// For versions below 2019.2 you can do it this way:
        // Create a variable
        Rigidbody rigidFound = GetComponent<Rigidbody>();
        
        // If the 'Rigidbody' exist in the gameobject
        if(rigidFound != null)
        {
        	// Deactivate rigidbody
            rigidFound.enabled = false;
        }
	}
}
Posted by: Guest on April-27-2020
0

findobject getcomponent

GameObject.Find("Name of the object you want to access").GetComponent<Name of the Component (Transform,Script,RigidBody,etc..)();
     
     An Example (easy to understand):
     
     GameObject Player = GameObject.Find("Player");
     PlayerController PlayerControllerScript = Player.GetComponent<PlayerController>();
     PlayerControllerScript.run = true;
     
     Another Example:
     
     GameObject.Find("Player").GetComponent<PlayerController>().run = true;
Posted by: Guest on June-14-2020

Browse Popular Code Answers by Language