This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*: | |
* @plugindesc 装飾品を増やすプラグイン | |
* @author 自分のアカウント名 | |
* @help 装飾品を増やすプラグインです。 | |
* @url | |
*/ | |
(() => { | |
'use strict'; | |
const _Game_Actor_equipSlots = Game_Actor.prototype.equipSlots; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*: | |
* @plugindesc 装飾品を増やすプラグイン | |
* @author 自分のアカウント名 | |
* @help 装飾品を増やすプラグインです。 | |
* @url | |
*/ | |
(() => { | |
'use strict'; | |
const _Game_Actor_equipSlots = Game_Actor.prototype.equipSlots; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// sum += 10 は、自己代入なので | |
let sum = 0; | |
sum += 10; | |
// const は再代入禁止だから分かった。 | |
const data = []; | |
data.push(10); | |
// Q. num は let じゃなくても動くのなぜ? | |
// A. For文はループごとに別スコープになるから |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# MVプロジェクトデータ変換 Ver0.5.1 | |
# 概要 | |
=begin | |
MVのプロジェクトデータをVXAceのrvdata2形式に変換します。 | |
=end | |
# ◆ スクリプト利用規約 |