phaser/wip/TS Source/particles/initialize/Position.ts
2013-09-13 16:24:01 +01:00

45 lines
889 B
TypeScript

/// <reference path="../../_definitions.ts" />
module Phaser.Particles.Initializers {
export class Position extends Initialize {
constructor(zone) {
super();
if (zone != null && zone != undefined)
{
this.zone = zone;
}
else
{
this.zone = new Phaser.Particles.Zones.PointZone();
}
}
zone;
reset(zone) {
if (zone != null && zone != undefined)
{
this.zone = zone;
}
else
{
this.zone = new Phaser.Particles.Zones.PointZone();
}
}
initialize(target) {
this.zone.getPosition();
target.p.x = this.zone.vector.x;
target.p.y = this.zone.vector.y;
}
}
}