C# Класс Nez.EntityProcessingSystem

Basic entity processing system. Use this as the base for processing many entities with specific components
Наследование: EntitySystem
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
lateProcess ( List entities ) : void
process ( List entities ) : void

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

Описание методов

EntityProcessingSystem() публичный Метод

public EntityProcessingSystem ( Matcher matcher ) : System
matcher Matcher
Результат System

lateProcess() публичный Метод

public lateProcess ( System.Entity entity ) : void
entity System.Entity
Результат void

lateProcess() защищенный Метод

protected lateProcess ( List entities ) : void
entities List
Результат void

process() публичный абстрактный Метод

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.
Результат void

process() защищенный Метод

Goes through all the entities of this system and processes them one by one
protected process ( List entities ) : void
entities List Entities.
Результат void