No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with
5 additions and
1 deletions
-
voicegardens/static/voicegardens.js
|
|
@ -218,7 +218,11 @@ class GeneratedShape { |
|
|
|
**/ |
|
|
|
// sound and properties passed into shape creation
|
|
|
|
this.soundRecorded = soundRecorded; |
|
|
|
this.soundAmplitude = soundAmplitude; |
|
|
|
|
|
|
|
// 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
|
|
|
|