如何在Typescript中的Phaser Game旁边添加Canvas

时间:2018-06-14 23:12:23

标签: typescript phaser-framework

我目前正在开发游戏,并且想知道是否有办法在包含游戏本身的框架旁边添加画布/输入窗口。游戏使用Phaser和Typescript。下面的图片展示了游戏当前的样子以及我想要的东西。下面也是我目前的Game.ts文件代码。

Game.ts文件代码:

module MyGame {

    export class Game extends Phaser.Game {

        constructor() {

            super(1200, 600, Phaser.AUTO, 'content', null);

            this.state.add('Boot', Boot, false);

            this.state.add('Preloader', Preloader, false);

            var level1 = new Level1(5,10, 100, 1, 80, .5);

            this.state.add('Level1', level1, false);

            this.state.start('Boot');
        }

    }

}

我想做的事情的图片:

Screenshot of What I want

如果有人能指出我如何实现这一点,我将不胜感激。

0 个答案:

没有答案