correction to numParticles check

This commit is contained in:
Asif Bacchus 2020-04-08 07:51:37 -06:00
parent 3983287420
commit 07239b51b3

View File

@ -182,12 +182,12 @@ function particles(){
if (typeof numParticles == 'undefined'){ if (typeof numParticles == 'undefined'){
numParticles = 1; numParticles = 1;
} }
else if (Number.isInteger(particles)){ else if (Number.isFinite(numParticles)){
numParticles; numParticles;
} }
else{ else{
numParticles = 1; numParticles = 1;
console.log("'particles' must be an integer value. Using default of '1'"); console.log("'numParticles' must be a finite number. Using default of '1'");
}; };
if (typeof sizeMultiplier == 'undefined'){ if (typeof sizeMultiplier == 'undefined'){