Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 1004 Bytes

World.Has_T_().md

File metadata and controls

22 lines (15 loc) · 1004 Bytes

World.Has() Method

Returns whether the current World has a component of type T.
It has nothing to do whether or not the current World instance has an Entity with a component of type T.

public bool Has<T>();

Type parameters

T

The type of the component.

Returns

System.Boolean
true if the World has a component of type T; otherwise, false.