Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateComponentMatcher ¶
CreateComponentMatcher creates a function given a slice of components. This function will take a parameter that is a single component and return true if it is in the slice of components or false otherwise
func MatchComponentMetadata ¶
func MatchComponentMetadata( components []types.ComponentMetadata, cType types.ComponentMetadata, ) bool
MatchComponentMetadata returns true if the given slice of components contains the given component. Components are the same if they have the same Name.
Types ¶
type ComponentFilter ¶
type ComponentFilter interface { // MatchesComponents returns true if the entity matches the filter. MatchesComponents(components []types.Component) bool }
ComponentFilter is a filter that filters entities based on their components.
func All ¶
func All() ComponentFilter
func And ¶
func And(filters ...ComponentFilter) ComponentFilter
func Contains ¶
func Contains(components ...types.Component) ComponentFilter
Contains matches archetypes that contain all the components specified.
func Exact ¶
func Exact(components ...types.Component) ComponentFilter
Exact matches archetypes that contain exactly the same components specified.
func Not ¶
func Not(filter ComponentFilter) ComponentFilter
func Or ¶
func Or(filters ...ComponentFilter) ComponentFilter
Source Files
¶
Click to show internal directories.
Click to hide internal directories.