Browse Source

Move properties closer together

main
Luke Murphy 4 years ago
parent
commit
6d64464597
No known key found for this signature in database GPG Key ID: 5E2EF5A63E3718CC
  1. 3
      voicegardens/static/voicegardens.js

3
voicegardens/static/voicegardens.js

@ -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;

Loading…
Cancel
Save