import lampix from '@lampix/core';
const draw = (recognizedObjects) => {
// Drawing amazing effects
shape: lampix.helpers.rectangle(0, 0, window.innerWidth / 2, window.innerHeight),
shape: lampix.helpers.rectangle(window.innerWidth / 2, 0, window.innerWidth / 2, window.innerHeight),
lampix.watchers.add(watcher1, watcher2)
.then((registeredWatchers) => {
state.registeredWatchers = registeredWatchers;
// Remove them right away!
// The removal expression below is equivalent to
return lampix.watchers.pauseAll();
// watcher1 and watcher2 are now paused
console.log(registeredWatchers[0].state.active); // false
console.log(registeredWatchers[1].state.active); // false
return lampix.watchers.resumeAll();
// watcher1 and watcher2 are now resumed
console.log(registeredWatchers[0].state.active); // true
console.log(registeredWatchers[1].state.active); // true