mirror of
https://github.com/kaythomas0/noisedash.git
synced 2025-11-15 20:48:03 +00:00
Fix watchable settings
This commit is contained in:
@@ -101,7 +101,7 @@ export default {
|
|||||||
return samples
|
return samples
|
||||||
},
|
},
|
||||||
changeableSettings: function () {
|
changeableSettings: function () {
|
||||||
return [
|
const settings = [
|
||||||
this.isTimerEnabled,
|
this.isTimerEnabled,
|
||||||
this.hours,
|
this.hours,
|
||||||
this.minutes,
|
this.minutes,
|
||||||
@@ -116,9 +116,16 @@ export default {
|
|||||||
this.lfoFilterCutoffRange,
|
this.lfoFilterCutoffRange,
|
||||||
this.isTremoloEnabled,
|
this.isTremoloEnabled,
|
||||||
this.tremoloDepth,
|
this.tremoloDepth,
|
||||||
|
this.tremoloFrequency,
|
||||||
this.isTimerEnabled,
|
this.isTimerEnabled,
|
||||||
this.loadedSamples
|
this.loadedSamples
|
||||||
]
|
]
|
||||||
|
|
||||||
|
this.loadedSamples.forEach(s => {
|
||||||
|
settings.push(s.volume)
|
||||||
|
})
|
||||||
|
|
||||||
|
return settings
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
|
|||||||
Reference in New Issue
Block a user