Scene_Map.prototype = Object.create(Scene_Base.prototype);
Scene_Map.prototype.constructor = Scene_Map;
然后,是不是必须像VA中的@XX = Window_XX.new一样写下面的:
XX = new Window_XX
但是我像下面这样写:
Scene_Map.prototype.xjzsq_start = Scene_Map.prototype.start;
Scene_Map.prototype.start = function(){
Scene_Map.prototype.xjzsq_start.call(this);
w = new Window_MapStatus;
测试以后显示TypeError:undefined is not a function
应该怎么写才能让窗口在场景中显示出来?
求大神指点迷津