Unity
[Attribute] RequireComponent
JiHxxn
2024. 3. 16. 15:28
📜 information
- RequireComponent 란 요구되는 컴포넌트를 종속성으로 자동으로 추가해준다.
[RequireComponent(typeof(Rigidbody))]
public class RequireTest : MonoBehaviour
{}
- 2. 자동으로 추가된 컴포넌트를 삭제 하려할 시 경고창을 띄움.
📖 참고 문서
Unity - Scripting API: RequireComponent