다음을 통해 공유


Entity.FindComponentOfType 메서드

정의

오버로드

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입니다.

적용 대상