Projection

template Projection (
T : Entity
string algorithm = ""
) if (
!isFinalClass!T &&
!isAbstractClass!T
) {}

Members

Classes

Projection
class Projection
Undocumented in source.

Examples

alias ZombieProjection = Projection!(Noai!Zombie, "direction-10,y+5");
auto zombie = world.spawn!ZombieProjection;
zombie.attach(player);

Meta