mirror of
https://github.com/wassname/phaser.git
synced 2026-06-27 16:10:15 +08:00
22 lines
399 B
TypeScript
22 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();
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|