Just when I thought I was getting the hang of plugin writing. Here's the offending section. I've googled and the usual culprits seem to be typos or wrong names. But I keep looking at my code and there doesn't seem to be a typo. Help?
Code:
Spoiler
Code:
function Scene_Adventure() {
this.initialize.apply(this, arguments);
};
Scene_Adventure.prototype = Object.create(Scene_MenuBase.prototype);
Scene_Adventure.prototype.constructor = Scene_Adventure;
Scene_Adventure.prototype.initialize = function() {
Scene_MenuBase.prototype.initialize.call(this);
};
Scene_Adventure.prototype.create = function() {
Scene_MenuBase.prototype.create.call(this);
this.createTitleWindow();
this.createStoryWindow();
this.createChoiceWindow();
this.createSaveButton();
};
Scene_Adventure.prototype.start = function(){
Scene_MenuBase.prototype.start.call(this);
};
Scene_Adventure.prototype.createTitleWindow = function() {
this._TitleWindow = new Window_Title();
this.addWindow(this._TitleWindow);
};
Scene_Adventure.prototype.createStoryWindow = function() {
this._StoryWindow = new Window_Story();
this.addWindow(this._StoryWindow);
};
Scene_Adventure.prototype.createChoiceWindow = function() {
this._ChoiceWindow = new Window_ChoiceList();
this.addWindow(this._ChoiceWindow);
//Window_ChoiceList.start();
};
Scene_Adventure.prototype.createSaveButton = function() {
this._SaveButton = new Window_SaveButton();
this.addWindow(this._SaveButton);
};