Answers for "unity object bool"

C#
0

unity object bool

using UnityEngine;

public class Example : MonoBehaviour
{
    // check if there is a rigidbody attached to this transform
    void Start()
    {
        if (GetComponent<Rigidbody>())
        {
            Debug.Log("Rigidbody attached to this transform");
        }
    }
}
Posted by: Guest on September-17-2020

C# Answers by Framework

Browse Popular Code Answers by Language