diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-07 20:45:47 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-07 20:45:47 -0700 |
commit | e6e29440563e33bb67e0ad51f9fb6c5c2c3fe809 (patch) | |
tree | 5deaee322ff1a039dc44a3cb52ecc48a671fda2a /src/engine/entities/Particles.ts | |
parent | 823620b2a6ebb7ece619991e47a37ad46542b69f (diff) | |
download | the-abstraction-engine-e6e29440563e33bb67e0ad51f9fb6c5c2c3fe809.tar.gz the-abstraction-engine-e6e29440563e33bb67e0ad51f9fb6c5c2c3fe809.zip |
level one (applications prototype finished!)
Diffstat (limited to 'src/engine/entities/Particles.ts')
-rw-r--r-- | src/engine/entities/Particles.ts | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/engine/entities/Particles.ts b/src/engine/entities/Particles.ts index 34b475c..5381b23 100644 --- a/src/engine/entities/Particles.ts +++ b/src/engine/entities/Particles.ts @@ -156,8 +156,12 @@ export class Particles extends Entity { Math.floor(Math.random() * options.particleColors.length) ]; const position = { - x: options.center.x + Math.cos(angle) * options.spawnerDimensions.width, - y: options.center.y + Math.sin(angle) * options.spawnerDimensions.height, + x: + options.center.x + + (Math.cos(angle) * options.spawnerDimensions.width) / 2, + y: + options.center.y + + (Math.sin(angle) * options.spawnerDimensions.height) / 2, }; if (options.spawnerShape === "rectangle") { // determine a random position on the edge of the spawner based on the angle |