mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-06 08:08:28 +08:00
28 lines
841 B
TypeScript
28 lines
841 B
TypeScript
import { TabContainer } from "../../core/gui/TabContainer";
|
|
|
|
export class ViewerView extends TabContainer {
|
|
constructor() {
|
|
super({
|
|
class: "viewer_ViewerView",
|
|
tabs: [
|
|
{
|
|
title: "Models",
|
|
key: "model",
|
|
create_view: async function() {
|
|
return new (await import("./model_3d/Model3DView")).Model3DView();
|
|
},
|
|
},
|
|
{
|
|
title: "Textures",
|
|
key: "texture",
|
|
create_view: async function() {
|
|
return new (await import("./TextureView")).TextureView();
|
|
},
|
|
},
|
|
],
|
|
});
|
|
|
|
this.finalize_construction(ViewerView.prototype);
|
|
}
|
|
}
|