-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathTMOmitSkillCategory.js
64 lines (57 loc) · 2.21 KB
/
TMOmitSkillCategory.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//=============================================================================
// TMPlugin - スキルカテゴリからの解放
// バージョン: 1.0.1
// 最終更新日: 2017/10/05
// 配布元 : http://hikimoki.sakura.ne.jp/
//-----------------------------------------------------------------------------
// Copyright (c) 2017 tomoaky
// Released under the MIT license.
// http://opensource.org/licenses/mit-license.php
//=============================================================================
/*:
* @target MZ MV
* @url https://raw.githubusercontent.com/munokura/tomoaky-MV-plugins/master/TMOmitSkillCategory.js
* @plugindesc スキルシーンからカテゴリ選択の処理を除外します。
*
* @author tomoaky
*
* @help
* TMPlugin - スキルカテゴリからの解放 ver1.0.1
*
* 使い方:
*
* プラグインコマンドはありません。
*
*
* 利用規約:
* MITライセンスです。
* https://ja.osdn.net/projects/opensource/wiki/licenses%2FMIT_license
* 作者に無断で改変、再配布が可能で、
* 利用形態(商用、18禁利用等)についても制限はありません。
*/
var Imported = Imported || {};
Imported.TMOmitSkillCategory = true;
(function() {
'use strict';
//-----------------------------------------------------------------------------
// Scene_Skill
//
var _Scene_Skill_start = Scene_Skill.prototype.start;
Scene_Skill.prototype.start = function() {
_Scene_Skill_start.call(this);
this._skillTypeWindow.deactivate();
this._skillTypeWindow.hide();
this._itemWindow.setStypeId(this._skillTypeWindow.currentExt());
this._itemWindow.setHandler('cancel', this.popScene.bind(this));
this._itemWindow.setHandler('pagedown', this.nextActor.bind(this));
this._itemWindow.setHandler('pageup', this.previousActor.bind(this));
this._itemWindow.activate();
this._itemWindow.selectLast();
};
var _Scene_Skill_onActorChange = Scene_Skill.prototype.onActorChange;
Scene_Skill.prototype.onActorChange = function() {
_Scene_Skill_onActorChange.call(this);
this._skillTypeWindow.deactivate();
this._itemWindow.activate();
};
})();