2016-09-13 18:59:34 +02:00
|
|
|
namespace pxsim.visuals {
|
2016-09-26 22:26:43 +02:00
|
|
|
mkBoardView = (opts: BoardViewOptions): BoardView => {
|
|
|
|
return new visuals.MicrobitBoardSvg({
|
|
|
|
runtime: runtime,
|
2017-04-20 08:44:47 +02:00
|
|
|
theme: visuals.randomTheme(opts.highContrast),
|
2016-09-26 22:26:43 +02:00
|
|
|
disableTilt: false,
|
2017-04-20 08:44:47 +02:00
|
|
|
wireframe: opts.wireframe
|
2016-09-26 22:26:43 +02:00
|
|
|
});
|
2016-09-13 18:59:34 +02:00
|
|
|
}
|
|
|
|
}
|