1、创建三个脚本Test1、Test2、Test3 2、当我们把Test1拖到GameObject上时,Test2、Test3会自动被挂到这个GameObject上。
using UnityEngine; [RequireComponent(typeof(Test2))] [RequireComponent(typeof(Test3))] public class Test1 : MonoBehaviour { }