custom-pixi-particles 4.19.3 → 4.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,5 +18,6 @@ declare const behaviourNames: {
18
18
  LIGHT_EFFECT_BEHAVIOUR: string;
19
19
  STRETCH_BEHAVIOUR: string;
20
20
  TEMPERATURE_BEHAVIOUR: string;
21
+ MOVE_TO_POINT_BEHAVIOUR: string;
21
22
  };
22
23
  export default behaviourNames;
@@ -18,6 +18,7 @@ const behaviourNames = {
18
18
  LIGHT_EFFECT_BEHAVIOUR: 'LightEffectBehaviour',
19
19
  STRETCH_BEHAVIOUR: 'StretchBehaviour',
20
20
  TEMPERATURE_BEHAVIOUR: 'TemperatureBehaviour',
21
+ MOVE_TO_POINT_BEHAVIOUR: 'MoveToPointBehaviour',
21
22
  };
22
23
  export default behaviourNames;
23
24
  //# sourceMappingURL=BehaviourNames.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"BehaviourNames.js","sourceRoot":"","sources":["../../../src/lib/behaviour/BehaviourNames.ts"],"names":[],"mappings":"AAAA,MAAM,cAAc,GAAG;IACrB,iBAAiB,EAAE,0BAA0B;IAC7C,cAAc,EAAE,eAAe;IAC/B,eAAe,EAAE,gBAAgB;IACjC,kBAAkB,EAAE,mBAAmB;IACvC,cAAc,EAAE,eAAe;IAC/B,cAAc,EAAE,wBAAwB;IACxC,kBAAkB,EAAE,mBAAmB;IACvC,oBAAoB,EAAE,qBAAqB;IAC3C,mBAAmB,EAAE,oBAAoB;IACzC,8BAA8B,EAAE,8BAA8B;IAC9D,4BAA4B,EAAE,2BAA2B;IACzD,sBAAsB,EAAE,sBAAsB;IAC9C,eAAe,EAAE,gBAAgB;IACjC,kBAAkB,EAAE,mBAAmB;IACvC,kBAAkB,EAAE,mBAAmB;IACvC,wBAAwB,EAAE,wBAAwB;IAClD,sBAAsB,EAAE,sBAAsB;IAC9C,iBAAiB,EAAE,kBAAkB;IACrC,qBAAqB,EAAE,sBAAsB;CAC9C,CAAA;AAED,eAAe,cAAc,CAAA"}
1
+ {"version":3,"file":"BehaviourNames.js","sourceRoot":"","sources":["../../../src/lib/behaviour/BehaviourNames.ts"],"names":[],"mappings":"AAAA,MAAM,cAAc,GAAG;IACrB,iBAAiB,EAAE,0BAA0B;IAC7C,cAAc,EAAE,eAAe;IAC/B,eAAe,EAAE,gBAAgB;IACjC,kBAAkB,EAAE,mBAAmB;IACvC,cAAc,EAAE,eAAe;IAC/B,cAAc,EAAE,wBAAwB;IACxC,kBAAkB,EAAE,mBAAmB;IACvC,oBAAoB,EAAE,qBAAqB;IAC3C,mBAAmB,EAAE,oBAAoB;IACzC,8BAA8B,EAAE,8BAA8B;IAC9D,4BAA4B,EAAE,2BAA2B;IACzD,sBAAsB,EAAE,sBAAsB;IAC9C,eAAe,EAAE,gBAAgB;IACjC,kBAAkB,EAAE,mBAAmB;IACvC,kBAAkB,EAAE,mBAAmB;IACvC,wBAAwB,EAAE,wBAAwB;IAClD,sBAAsB,EAAE,sBAAsB;IAC9C,iBAAiB,EAAE,kBAAkB;IACrC,qBAAqB,EAAE,sBAAsB;IAC7C,uBAAuB,EAAE,sBAAsB;CAChD,CAAA;AAED,eAAe,cAAc,CAAA"}
@@ -0,0 +1,64 @@
1
+ import { Behaviour } from './index';
2
+ import Particle from '../Particle';
3
+ import { Point } from '../util';
4
+ /**
5
+ * MoveToPointBehaviour makes particles move towards a specified target point
6
+ * when active.
7
+ * @extends Behaviour
8
+ */
9
+ export default class MoveToPointBehaviour extends Behaviour {
10
+ enabled: boolean;
11
+ /**
12
+ * When true, particles will move towards the targetPoint.
13
+ */
14
+ active: boolean;
15
+ /**
16
+ * The target (x, y) coordinates for the particles.
17
+ */
18
+ targetPoint: Point;
19
+ /**
20
+ * The speed at which particles move towards the target point (units per second).
21
+ */
22
+ speed: number;
23
+ /**
24
+ * Priority determines execution order. A lower number means it runs later.
25
+ * This should run after default position behaviours to override the particle's position.
26
+ * PositionBehaviour is 100, EmitDirection is 0. Set to -10 to run after them.
27
+ */
28
+ priority: number;
29
+ constructor();
30
+ /**
31
+ * Initializes particle properties for the behaviour.
32
+ * This behaviour doesn't require specific per-particle initialization at creation time,
33
+ * as its effect is mostly global and trigger-based.
34
+ * @param {Particle} particle - The particle to initialize.
35
+ */
36
+ init: (particle: Particle) => void;
37
+ /**
38
+ * Applies the behaviour to the particle. If active, moves the particle
39
+ * towards the targetPoint.
40
+ * @param {Particle} particle - The particle to apply the behaviour to.
41
+ * @param {number} deltaTime - Time elapsed since the last frame.
42
+ */
43
+ apply: (particle: Particle, deltaTime: number) => void;
44
+ /**
45
+ * Gets the name of the behaviour.
46
+ * @returns {string} - The name of the behaviour.
47
+ */
48
+ getName(): string;
49
+ /**
50
+ * Gets the properties of the behaviour for configuration.
51
+ * @returns {object} - The properties of the behaviour.
52
+ */
53
+ getProps(): {
54
+ enabled: boolean;
55
+ active: boolean;
56
+ targetPoint: {
57
+ x: number;
58
+ y: number;
59
+ };
60
+ speed: number;
61
+ priority: number;
62
+ name: string;
63
+ };
64
+ }
@@ -0,0 +1,110 @@
1
+ import { Behaviour, BehaviourNames } from './index';
2
+ import { Point } from '../util';
3
+ /**
4
+ * MoveToPointBehaviour makes particles move towards a specified target point
5
+ * when active.
6
+ * @extends Behaviour
7
+ */
8
+ export default class MoveToPointBehaviour extends Behaviour {
9
+ constructor() {
10
+ super();
11
+ this.enabled = true;
12
+ /**
13
+ * When true, particles will move towards the targetPoint.
14
+ */
15
+ this.active = false;
16
+ /**
17
+ * The target (x, y) coordinates for the particles.
18
+ */
19
+ this.targetPoint = new Point(0, 0);
20
+ /**
21
+ * The speed at which particles move towards the target point (units per second).
22
+ */
23
+ this.speed = 100;
24
+ /**
25
+ * Priority determines execution order. A lower number means it runs later.
26
+ * This should run after default position behaviours to override the particle's position.
27
+ * PositionBehaviour is 100, EmitDirection is 0. Set to -10 to run after them.
28
+ */
29
+ this.priority = -10;
30
+ /**
31
+ * Initializes particle properties for the behaviour.
32
+ * This behaviour doesn't require specific per-particle initialization at creation time,
33
+ * as its effect is mostly global and trigger-based.
34
+ * @param {Particle} particle - The particle to initialize.
35
+ */
36
+ this.init = (particle) => {
37
+ // No particle-specific setup needed when it's created,
38
+ // as the movement is controlled by the 'active' state of the behaviour.
39
+ };
40
+ /**
41
+ * Applies the behaviour to the particle. If active, moves the particle
42
+ * towards the targetPoint.
43
+ * @param {Particle} particle - The particle to apply the behaviour to.
44
+ * @param {number} deltaTime - Time elapsed since the last frame.
45
+ */
46
+ this.apply = (particle, deltaTime) => {
47
+ if (!this.enabled || !this.active) {
48
+ // If the behaviour is not enabled or not active, do nothing.
49
+ // The particle will continue its movement based on other behaviours.
50
+ return;
51
+ }
52
+ const dx = this.targetPoint.x - particle.x;
53
+ const dy = this.targetPoint.y - particle.y;
54
+ const distance = Math.sqrt(dx * dx + dy * dy);
55
+ // When this behaviour is active, it takes full control of the particle's position.
56
+ // We also zero out current velocity and acceleration to prevent interference
57
+ // from other behaviours for this frame's positioning.
58
+ particle.velocity.set(0, 0);
59
+ particle.acceleration.set(0, 0);
60
+ // If particle is already at or very close to the target
61
+ if (distance < 1.0) {
62
+ // Using a small threshold to prevent jittering
63
+ particle.x = this.targetPoint.x;
64
+ particle.y = this.targetPoint.y;
65
+ }
66
+ else {
67
+ const moveAmount = this.speed * deltaTime;
68
+ if (moveAmount >= distance) {
69
+ // If the movement step is enough to reach the target, snap to target
70
+ particle.x = this.targetPoint.x;
71
+ particle.y = this.targetPoint.y;
72
+ }
73
+ else {
74
+ // Move towards the target
75
+ particle.x += (dx / distance) * moveAmount;
76
+ particle.y += (dy / distance) * moveAmount;
77
+ }
78
+ }
79
+ // Sync particle.movement to the new x, y. This helps if this behaviour
80
+ // becomes inactive, allowing other behaviours like PositionBehaviour
81
+ // to resume more smoothly from the particle's current position.
82
+ particle.movement.x = particle.x;
83
+ particle.movement.y = particle.y;
84
+ };
85
+ // Ensure targetPoint is initialized as a Point instance for copyFromRawData in parser
86
+ this.targetPoint = new Point(0, 0);
87
+ }
88
+ /**
89
+ * Gets the name of the behaviour.
90
+ * @returns {string} - The name of the behaviour.
91
+ */
92
+ getName() {
93
+ return BehaviourNames.MOVE_TO_POINT_BEHAVIOUR;
94
+ }
95
+ /**
96
+ * Gets the properties of the behaviour for configuration.
97
+ * @returns {object} - The properties of the behaviour.
98
+ */
99
+ getProps() {
100
+ return {
101
+ enabled: this.enabled,
102
+ active: this.active,
103
+ targetPoint: { x: this.targetPoint.x, y: this.targetPoint.y },
104
+ speed: this.speed,
105
+ priority: this.priority,
106
+ name: this.getName(),
107
+ };
108
+ }
109
+ }
110
+ //# sourceMappingURL=MoveToPointBehaviour.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MoveToPointBehaviour.js","sourceRoot":"","sources":["../../../src/lib/behaviour/MoveToPointBehaviour.ts"],"names":[],"mappings":"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"}
@@ -20,4 +20,5 @@ import SoundReactiveBehaviour from './SoundReactiveBehaviour';
20
20
  import LightEffectBehaviour from './LightEffectBehaviour';
21
21
  import StretchBehaviour from './StretchBehaviour';
22
22
  import TemperatureBehaviour from './TemperatureBehaviour';
23
- export { EmitterBehaviours, Behaviour, SpawnBehaviour, LifeBehaviour, PositionBehaviour, ColorBehaviour, SizeBehaviour, AngularVelocityBehaviour, EmitDirectionBehaviour, RotationBehaviour, TurbulenceBehaviour, CollisionBehaviour, AttractionRepulsionBehaviour, NoiseBasedMotionBehaviour, ForceFieldsBehaviour, TimelineBehaviour, GroupingBehaviour, SoundReactiveBehaviour, LightEffectBehaviour, StretchBehaviour, TemperatureBehaviour, BehaviourNames, };
23
+ import MoveToPointBehaviour from './MoveToPointBehaviour';
24
+ export { EmitterBehaviours, Behaviour, SpawnBehaviour, LifeBehaviour, PositionBehaviour, ColorBehaviour, SizeBehaviour, AngularVelocityBehaviour, EmitDirectionBehaviour, RotationBehaviour, TurbulenceBehaviour, CollisionBehaviour, AttractionRepulsionBehaviour, NoiseBasedMotionBehaviour, ForceFieldsBehaviour, TimelineBehaviour, GroupingBehaviour, SoundReactiveBehaviour, LightEffectBehaviour, StretchBehaviour, TemperatureBehaviour, BehaviourNames, MoveToPointBehaviour, };
@@ -20,5 +20,6 @@ import SoundReactiveBehaviour from './SoundReactiveBehaviour';
20
20
  import LightEffectBehaviour from './LightEffectBehaviour';
21
21
  import StretchBehaviour from './StretchBehaviour';
22
22
  import TemperatureBehaviour from './TemperatureBehaviour';
23
- export { EmitterBehaviours, Behaviour, SpawnBehaviour, LifeBehaviour, PositionBehaviour, ColorBehaviour, SizeBehaviour, AngularVelocityBehaviour, EmitDirectionBehaviour, RotationBehaviour, TurbulenceBehaviour, CollisionBehaviour, AttractionRepulsionBehaviour, NoiseBasedMotionBehaviour, ForceFieldsBehaviour, TimelineBehaviour, GroupingBehaviour, SoundReactiveBehaviour, LightEffectBehaviour, StretchBehaviour, TemperatureBehaviour, BehaviourNames, };
23
+ import MoveToPointBehaviour from './MoveToPointBehaviour';
24
+ export { EmitterBehaviours, Behaviour, SpawnBehaviour, LifeBehaviour, PositionBehaviour, ColorBehaviour, SizeBehaviour, AngularVelocityBehaviour, EmitDirectionBehaviour, RotationBehaviour, TurbulenceBehaviour, CollisionBehaviour, AttractionRepulsionBehaviour, NoiseBasedMotionBehaviour, ForceFieldsBehaviour, TimelineBehaviour, GroupingBehaviour, SoundReactiveBehaviour, LightEffectBehaviour, StretchBehaviour, TemperatureBehaviour, BehaviourNames, MoveToPointBehaviour, };
24
25
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/behaviour/index.ts"],"names":[],"mappings":"AAAA,OAAO,cAAc,MAAM,kBAAkB,CAAA;AAC7C,OAAO,iBAAiB,MAAM,qBAAqB,CAAA;AACnD,OAAO,SAAS,MAAM,aAAa,CAAA;AACnC,OAAO,aAAa,MAAM,iBAAiB,CAAA;AAC3C,OAAO,iBAAiB,MAAM,qBAAqB,CAAA;AACnD,OAAO,cAAc,MAAM,kBAAkB,CAAA;AAC7C,OAAO,4BAA4B,MAAM,gCAAgC,CAAA;AACzE,OAAO,aAAa,MAAM,iBAAiB,CAAA;AAC3C,OAAO,wBAAwB,MAAM,4BAA4B,CAAA;AACjE,OAAO,sBAAsB,MAAM,0BAA0B,CAAA;AAC7D,OAAO,iBAAiB,MAAM,qBAAqB,CAAA;AACnD,OAAO,mBAAmB,MAAM,uBAAuB,CAAA;AACvD,OAAO,kBAAkB,MAAM,sBAAsB,CAAA;AACrD,OAAO,yBAAyB,MAAM,6BAA6B,CAAA;AACnE,OAAO,oBAAoB,MAAM,wBAAwB,CAAA;AACzD,OAAO,cAAc,MAAM,kBAAkB,CAAA;AAC7C,OAAO,iBAAiB,MAAM,qBAAqB,CAAA;AACnD,OAAO,iBAAiB,MAAM,qBAAqB,CAAA;AACnD,OAAO,sBAAsB,MAAM,0BAA0B,CAAA;AAC7D,OAAO,oBAAoB,MAAM,wBAAwB,CAAA;AACzD,OAAO,gBAAgB,MAAM,oBAAoB,CAAA;AACjD,OAAO,oBAAoB,MAAM,wBAAwB,CAAA;AAEzD,OAAO,EACL,iBAAiB,EACjB,SAAS,EACT,cAAc,EACd,aAAa,EACb,iBAAiB,EACjB,cAAc,EACd,aAAa,EACb,wBAAwB,EACxB,sBAAsB,EACtB,iBAAiB,EACjB,mBAAmB,EACnB,kBAAkB,EAClB,4BAA4B,EAC5B,yBAAyB,EACzB,oBAAoB,EACpB,iBAAiB,EACjB,iBAAiB,EACjB,sBAAsB,EACtB,oBAAoB,EACpB,gBAAgB,EAChB,oBAAoB,EACpB,cAAc,GACf,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/behaviour/index.ts"],"names":[],"mappings":"AAAA,OAAO,cAAc,MAAM,kBAAkB,CAAA;AAC7C,OAAO,iBAAiB,MAAM,qBAAqB,CAAA;AACnD,OAAO,SAAS,MAAM,aAAa,CAAA;AACnC,OAAO,aAAa,MAAM,iBAAiB,CAAA;AAC3C,OAAO,iBAAiB,MAAM,qBAAqB,CAAA;AACnD,OAAO,cAAc,MAAM,kBAAkB,CAAA;AAC7C,OAAO,4BAA4B,MAAM,gCAAgC,CAAA;AACzE,OAAO,aAAa,MAAM,iBAAiB,CAAA;AAC3C,OAAO,wBAAwB,MAAM,4BAA4B,CAAA;AACjE,OAAO,sBAAsB,MAAM,0BAA0B,CAAA;AAC7D,OAAO,iBAAiB,MAAM,qBAAqB,CAAA;AACnD,OAAO,mBAAmB,MAAM,uBAAuB,CAAA;AACvD,OAAO,kBAAkB,MAAM,sBAAsB,CAAA;AACrD,OAAO,yBAAyB,MAAM,6BAA6B,CAAA;AACnE,OAAO,oBAAoB,MAAM,wBAAwB,CAAA;AACzD,OAAO,cAAc,MAAM,kBAAkB,CAAA;AAC7C,OAAO,iBAAiB,MAAM,qBAAqB,CAAA;AACnD,OAAO,iBAAiB,MAAM,qBAAqB,CAAA;AACnD,OAAO,sBAAsB,MAAM,0BAA0B,CAAA;AAC7D,OAAO,oBAAoB,MAAM,wBAAwB,CAAA;AACzD,OAAO,gBAAgB,MAAM,oBAAoB,CAAA;AACjD,OAAO,oBAAoB,MAAM,wBAAwB,CAAA;AACzD,OAAO,oBAAoB,MAAM,wBAAwB,CAAA;AAEzD,OAAO,EACL,iBAAiB,EACjB,SAAS,EACT,cAAc,EACd,aAAa,EACb,iBAAiB,EACjB,cAAc,EACd,aAAa,EACb,wBAAwB,EACxB,sBAAsB,EACtB,iBAAiB,EACjB,mBAAmB,EACnB,kBAAkB,EAClB,4BAA4B,EAC5B,yBAAyB,EACzB,oBAAoB,EACpB,iBAAiB,EACjB,iBAAiB,EACjB,sBAAsB,EACtB,oBAAoB,EACpB,gBAAgB,EAChB,oBAAoB,EACpB,cAAc,EACd,oBAAoB,GACrB,CAAA"}
package/package.json CHANGED
@@ -42,5 +42,5 @@
42
42
  "lint": "tslint 'src/**/*.ts'",
43
43
  "lint:fix": "tslint --fix 'src/**/*.ts'"
44
44
  },
45
- "version": "4.19.3"
45
+ "version": "4.20.0"
46
46
  }