Entity.FindComponentOfType 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
FindComponentOfType(ObjectType) |
이 엔터티에 연결된 지정된 형식의 구성 요소를 찾으려고 시도합니다. |
FindComponentOfType<T>() |
이 엔터티에서 형식의 구성 요소를 찾습니다. |
FindComponentOfType(ObjectType)
이 엔터티에 연결된 지정된 형식의 구성 요소를 찾으려고 시도합니다.
public:
Microsoft::Azure::RemoteRendering::ComponentBase ^ FindComponentOfType(Microsoft::Azure::RemoteRendering::ObjectType type);
public Microsoft.Azure.RemoteRendering.ComponentBase FindComponentOfType (Microsoft.Azure.RemoteRendering.ObjectType type);
member this.FindComponentOfType : Microsoft.Azure.RemoteRendering.ObjectType -> Microsoft.Azure.RemoteRendering.ComponentBase
Public Function FindComponentOfType (type As ObjectType) As ComponentBase
매개 변수
- type
- ObjectType
검색할 구성 요소 유형(예: MeshComponent.)
반환
구성 요소가 있으면 null이고, 그렇지 않으면 null입니다.
설명
각 구성 요소 형식의 인스턴스 하나만 각 엔터티에 연결할 수 있습니다. 따라서 이 함수는 단일 결과를 반환하거나 찾을 수 없는 경우 null
. 전체 엔터티 하위 트리에서 구성 요소를 검색해야 하는 경우 FindComponentsOfTypeInHierarchy(ObjectType, Int32) 함수를 사용합니다.
적용 대상
FindComponentOfType<T>()
이 엔터티에서 형식의 구성 요소를 찾습니다.
public:
generic <typename T>
where T : Microsoft::Azure::RemoteRendering::ComponentBase T FindComponentOfType();
public T FindComponentOfType<T> () where T : Microsoft.Azure.RemoteRendering.ComponentBase;
member this.FindComponentOfType : unit -> 'T (requires 'T :> Microsoft.Azure.RemoteRendering.ComponentBase)
Public Function FindComponentOfType(Of T As ComponentBase) () As T
형식 매개 변수
- T
반환
T
구성 요소가 있으면 null이고, 그렇지 않으면 null입니다.