Generate overview based on subproject size

This commit is contained in:
Dennis Schoepf 2021-07-21 15:27:04 +02:00
parent 4053961357
commit 9790361f24
9 changed files with 109 additions and 24 deletions

View file

@ -1,15 +0,0 @@
import { mp5 } from '../../main';
import store from '../store';
import { Scenes } from './scenes';
export class LegacyScene {
constructor() {}
draw() {
mp5.background(100);
}
onSceneClick() {
console.log('Click on legacy scene');
store.setState({ currentScene: Scenes.OVERVIEW });
}
}