mirror of
https://github.com/photonstorm/phaser
synced 2024-12-19 01:24:48 +00:00
21 lines
399 B
TypeScript
21 lines
399 B
TypeScript
/// <reference path="../../_definitions.ts" />
|
|
|
|
module Phaser.Particles.Initializers {
|
|
|
|
export class Mass extends Initialize {
|
|
|
|
constructor(a,b,c) {
|
|
super();
|
|
this.massPan = ParticleUtils.setSpanValue(a, b, c);
|
|
}
|
|
|
|
massPan: Phaser.Particles.Span;
|
|
|
|
initialize(target) {
|
|
target.mass = this.massPan.getValue();
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|