Move properties closer together

This commit is contained in:
Luke Murphy 2020-02-11 14:01:27 +01:00
parent 4bf3a8094a
commit 6d64464597
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC

View File

@ -218,13 +218,12 @@ class GeneratedShape {
**/
// sound and properties passed into shape creation
this.soundRecorded = soundRecorded;
this.soundDuration = soundDuration;
// ensure that erroneous minus amplitudes are at least given 0
if (soundAmplitude < 0) this.soundAmplitude = 0.0;
else this.soundAmplitude = soundAmplitude;
this.soundDuration = soundDuration;
// mouse hover awareness for sound playing
this.hover = false;