mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-11 13:48:34 +00:00
use hap color for claviature
This commit is contained in:
parent
708675077f
commit
094b30cd26
@ -37,14 +37,14 @@ registerWidget('claviature', 'strudel-claviature');
|
||||
|
||||
Pattern.prototype.claviature = function (id, options = {}) {
|
||||
return this.onFrame((haps) => {
|
||||
const keys = haps.map((h) => h.value.note);
|
||||
const colorize = haps.map((h) => ({ keys: [h.value.note], color: h.context?.color || 'steelblue' }));
|
||||
let el = document.getElementById(id);
|
||||
el?.setAttribute(
|
||||
'options',
|
||||
JSON.stringify({
|
||||
...options,
|
||||
range: options.range || ['A2', 'C6'],
|
||||
colorize: [{ keys: keys, color: options.color || 'steelblue' }],
|
||||
colorize,
|
||||
}),
|
||||
);
|
||||
});
|
||||
|
||||
@ -19,9 +19,9 @@ Here is an example that uses all available options:
|
||||
|
||||
```js
|
||||
chord("<Em9 A7 D^7@2>").voicing().piano()
|
||||
.color('cyan')
|
||||
.claviature({
|
||||
range: ['C1', 'C6'], // rendered note range
|
||||
color: 'yellow', // highlighting color
|
||||
palette: ['cyan', 'magenta'],
|
||||
stroke: 'black',
|
||||
scaleX: 1, scaleY: 1,
|
||||
@ -29,5 +29,3 @@ chord("<Em9 A7 D^7@2>").voicing().piano()
|
||||
lowerHeight: 50
|
||||
})
|
||||
```
|
||||
|
||||
Note: The `Pattern.claviature` method uses the `colorization` option internally, so don't override that and use the `color` option for changing the highlighting color.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user