Skip to content

Commit

Permalink
Updating manual
Browse files Browse the repository at this point in the history
  • Loading branch information
subvertnormality committed Dec 8, 2024
1 parent 9f30739 commit 64cc73d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1108,13 +1108,15 @@ _Mosaic_ works with [matrix mod](https://github.com/sixolet/matrix) and [toolkit

## Performance Management

_Mosaic_ gives you a lot of control, but it can also be resource intensive. Pushing the sequencer to its limits can cause slow down and lead to an instable external clock. Here are some tips for managing performance:
_Mosaic_ gives you a lot of control, but it can also be resource intensive. Pushing the sequencer to its limits can cause slow down and lead to an instable external clock. Performance should be fine under normal usage, but more enhancements are planned for future releases. Here are some tips for managing performance:

- The more channels you use, the greater care you need to take when using high clock rates, trig locks, param slides, and n.b. devices.
- High clock rates and multipliers place a greater strain on the sequencer. Use lower clock rates where possible.
- Global param slides are resource intensive and should be used sparingly. Consider using step param slides instead.
- Recording with trigless locks enabled places a greater strain on the sequencer. Disable if you don't need the granularity of modulations.
- N.b. devices should be be used sparingly.
- High clock rates and multipliers place a greater strain on the sequencer.
- Global param slides are resource intensive and should be used sparingly. Consider using step param slides instead. Generally take care to limit the number of param slides in use.
- Recording with trigless locks enabled places a greater strain on the sequencer. Disable if you don't need that level of modulation granularity.
- N.b. devices should be be used sparingly.

During testing of v1.1.0, we discovered that external sync became unreliable under the following conditions: 1 n.b. device in use, trigless parameters were in use at 160 BPM, with most steps locked for all 10 trig parameters across the four channels, with 20 of those parameters utilising global param sliding. Different combinations of these conditions may yield different results.

## Development

Expand Down
4 changes: 4 additions & 0 deletions lib/step.lua
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@ function step.process_params(c, step)
local value
local devices = program_data.devices

if channel.mute then
return
end

for i, param in ipairs(trig_lock_params) do

if should_process_param(param) then
Expand Down

0 comments on commit 64cc73d

Please sign in to comment.