C# Class Nez.EntityProcessingSystem

Basic entity processing system. Use this as the base for processing many entities with specific components
Inheritance: EntitySystem
Afficher le fichier Open project: prime31/Nez

Méthodes publiques

Méthode Description
EntityProcessingSystem ( Matcher matcher ) : System
lateProcess ( System.Entity entity ) : void
process ( System.Entity entity ) : void

Processes a specific entity. It's called for all the entities in the list.

Méthodes protégées

Méthode Description
lateProcess ( List entities ) : void
process ( List entities ) : void

Goes through all the entities of this system and processes them one by one

Method Details

EntityProcessingSystem() public méthode

public EntityProcessingSystem ( Matcher matcher ) : System
matcher Matcher
Résultat System

lateProcess() public méthode

public lateProcess ( System.Entity entity ) : void
entity System.Entity
Résultat void

lateProcess() protected méthode

protected lateProcess ( List entities ) : void
entities List
Résultat void

process() public abstract méthode

Processes a specific entity. It's called for all the entities in the list.
public abstract process ( System.Entity entity ) : void
entity System.Entity Entity.
Résultat void

process() protected méthode

Goes through all the entities of this system and processes them one by one
protected process ( List entities ) : void
entities List Entities.
Résultat void