ultimate-angel-zerachiel/www/js/plugins/SetSVCharacterHomePosition.js
2024-01-17 11:38:37 -06:00

20 lines
598 B
JavaScript

//=============================================================================
// SetSVCharacterHomePosition.js
//=============================================================================
/*:
* @plugindesc Set the home position of side view battlers.
* @author Ritz
*
* @help
* このプラグインにはプラグインコマンドはありません。
* プラグイン内で直接数値を書き直してください。
*
*/
(function () {
"use strict";
Sprite_Actor.prototype.setActorHome = function (index) {
this.setHome(400 + index * 32, 280 + index * 48);
};
})();