mirror of
https://github.com/publiclab/image-sequencer.git
synced 2025-12-11 10:49:59 +01:00
* Change addsteps(), loadImages(), run() and default UI * Restructure API completely * Add updated dist files * Removed extra comments * Indentation improved * Update README.md
6 lines
154 B
JavaScript
6 lines
154 B
JavaScript
// add steps to the sequencer
|
|
function AddStep(_sequencer, name, o) {
|
|
return require('./InsertStep')(_sequencer,-1,name,o);
|
|
}
|
|
module.exports = AddStep;
|