C# 클래스 Nez.EntityProcessingSystem

Basic entity processing system. Use this as the base for processing many entities with specific components
상속: EntitySystem
파일 보기 프로젝트 열기: prime31/Nez

공개 메소드들

메소드 설명
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