Obsolete public Component collider ;

Descripción

El Collider adjunto a este GameObject (Lectura solamente). (Null si no hay uno adjunto).

Obsolete. Use GetComponent<Collider>() instead.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { GetComponent<Collider>().material.dynamicFriction = 1f; } }