2019-08-20 04:56:40 +08:00
|
|
|
import { TabContainer } from "../../core/gui/TabContainer";
|
|
|
|
|
2019-08-29 03:36:45 +08:00
|
|
|
export class ViewerView extends TabContainer {
|
|
|
|
constructor() {
|
2019-09-11 21:51:56 +08:00
|
|
|
super({
|
|
|
|
class: "viewer_ViewerView",
|
|
|
|
tabs: [
|
|
|
|
{
|
|
|
|
title: "Models",
|
|
|
|
key: "model",
|
|
|
|
create_view: async function() {
|
|
|
|
return new (await import("./model_3d/Model3DView")).Model3DView();
|
|
|
|
},
|
2019-08-29 03:36:45 +08:00
|
|
|
},
|
2019-09-11 21:51:56 +08:00
|
|
|
{
|
|
|
|
title: "Textures",
|
|
|
|
key: "texture",
|
|
|
|
create_view: async function() {
|
|
|
|
return new (await import("./TextureView")).TextureView();
|
|
|
|
},
|
2019-08-29 03:36:45 +08:00
|
|
|
},
|
2019-09-11 21:51:56 +08:00
|
|
|
],
|
|
|
|
});
|
2019-09-14 21:20:36 +08:00
|
|
|
|
|
|
|
this.finalize_construction(ViewerView.prototype);
|
2019-08-20 04:56:40 +08:00
|
|
|
}
|
|
|
|
}
|