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