Project1

标题: 新建窗口,打开第一次有文字,第二次才有图片 这是??? [打印本页]

作者: abcd1231406    时间: 2020-8-21 10:57
标题: 新建窗口,打开第一次有文字,第二次才有图片 这是???
学着SIAKO.Mobi的教程 到创建一个基本窗口那一章。 最后的也是要第二次开才有角色图, 如何一打开就有角色图呢? 萌新求问

(function(){

//以别名填充菜单视窗方法
var screen_s = Scene_Menu.prototype.create;
Scene_Menu.prototype.create = function() {
        screen_s.call(this);
        this._cw = new Window_C();
        this._cw.y = 340;
        this.addWindow( this._cw );

};

//建立新视窗
function Window_C() {
    this.initialize.apply(this, arguments);
}

Window_C.prototype = Object.create(Window_Base.prototype);
Window_C.prototype.constructor = Window_C;

Window_C.prototype.initialize = function(x, y) {
    var width = this.windowWidth();
    var height = this.windowHeight();
    Window_Base.prototype.initialize.call(this, x, y, width, height);
    this.refresh();
};


//视窗宽度
Window_C.prototype.windowWidth = function() {
    return 200;
};
//视窗高度
Window_C.prototype.windowHeight = function() {
    return 200;
};
//更新动态
Window_C.prototype.refresh = function() {
    var x = this.textPadding();
    var width = this.contents.width - this.textPadding() * 2;
    this.contents.clear();
    //显示文字
    this.drawTextEx('测试窗口1', 0, 0);
    //显示角色脸图
    this.drawFace( 'longw', 0, 0, 30, 150, 150);


};

//视窗底层呼叫
Window_C.prototype.open = function() {
        this.refresh();
    Window_Base.prototype.open.call(this);

};

})();



搞不明白







欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1