File size: 5,287 Bytes
99b0de1 | 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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | //=============================================================================
// ImageSmoothSetting.js
// ----------------------------------------------------------------------------
// (C)2017 Triacontane
// This software is released under the MIT License.
// http://opensource.org/licenses/mit-license.php
// ----------------------------------------------------------------------------
// Version
// 2.1.0 2021/03/10 システム画像に対するぼかし設定を追加
// 2.0.0 2021/01/23 MZで動作するよう修正
// 1.1.0 2017/06/24 テキストなど動的画像のぼかし設定を追加
// 1.0.0 2017/02/24 初版
// ----------------------------------------------------------------------------
// [Blog] : https://triacontane.blogspot.jp/
// [Twitter]: https://twitter.com/triacontane/
// [GitHub] : https://github.com/triacontane/
//=============================================================================
/*:ja
* @plugindesc 画像ぼかし個別設定プラグイン
* @target MZ
* @url https://github.com/triacontane/RPGMakerMV/tree/mz_master/ImageSmoothSetting.js
* @base PluginCommonBase
* @author トリアコンタン
*
* @param BattleBack
* @text 戦闘背景
* @desc 戦闘背景画像(戦闘背景1、戦闘背景2)にぼかしをかけます。
* @default true
* @type boolean
*
* @param Battler
* @text バトラー
* @desc バトラー画像(アクター、敵キャラ)にぼかしをかけます。
* @default true
* @type boolean
*
* @param Face
* @text フェイス
* @desc フェイス画像にぼかしをかけます。
* @default true
* @type boolean
*
* @param Parallax
* @text 遠景
* @desc 遠景画像にぼかしをかけます。
* @default true
* @type boolean
*
* @param Picture
* @text ピクチャ
* @desc ピクチャ画像にぼかしをかけます。
* @default true
* @type boolean
*
* @param Title
* @text タイトル
* @desc タイトル画像(タイトル画像1、タイトル画像2)にぼかしをかけます。
* @default true
* @type boolean
*
* @param Character
* @text キャラクター
* @desc キャラクター画像にぼかしをかけます。
* @default true
* @type boolean
*
* @param System
* @text システム
* @desc システム画像にぼかしをかけます。
* @default true
* @type boolean
*
* @param DynamicImage
* @text 動的画像
* @desc ウィンドウの文字など動的に作成した画像にぼかしをかけます。
* @default true
* @type boolean
*
* @help 画像を拡大したときに「ぼかし」(Scale Mode:LINEAR)を入れて
* 表示するかどうかを画像種別ごとに設定できます。
* 「ぼかし」処理を行わないとくっきり映りますが、ドットが見えます。
*
* また「ぼかし」が有効の場合、キャラクター画像やシステム画像のように
* スプライトシートや複数のパーツをひとつの画像にまとめていて、
* かつパーツの境界付近が透過色でない場合、
* ぼかしを入れることで画像の端にゴミのようなものが表示される場合があります。
*
* RPGツクールMZのデフォルトでは全ての画像に「ぼかし」が入ります。
*
* 利用規約:
* 作者に無断で改変、再配布が可能で、利用形態(商用、18禁利用等)
* についても制限はありません。
* このプラグインはもうあなたのものです。
*/
(function() {
'use strict';
const script = document.currentScript;
const param = PluginManagerEx.createParameter(script);
//=============================================================================
// ImageManager
// 画像種別ごとにぼかしを個別設定可能にします。
//=============================================================================
ImageManager._smoothMap = {
'img/battlebacks1/': param.BattleBack,
'img/battlebacks2/': param.BattleBack,
'img/enemies/' : param.Battler,
'img/characters/' : param.Character,
'img/faces/' : param.Face,
'img/parallaxes/' : param.Parallax,
'img/pictures/' : param.Picture,
'img/sv_actors/' : param.Battler,
'img/sv_enemies/' : param.Battler,
'img/titles1/' : param.Title,
'img/titles2/' : param.Title,
'img/system/' : param.System,
};
const _ImageManager_loadBitmap = ImageManager.loadBitmap;
ImageManager.loadBitmap = function(folder, filename) {
const bitmap = _ImageManager_loadBitmap.apply(this, arguments);
if (this._smoothMap.hasOwnProperty(folder)) {
bitmap.smooth = this._smoothMap[folder];
}
return bitmap;
};
//=============================================================================
// Bitmap
// 動的作成画像にぼかしを設定可能にします。
//=============================================================================
const _Bitmap_initialize = Bitmap.prototype.initialize;
Bitmap.prototype.initialize = function(width, height) {
_Bitmap_initialize.apply(this, arguments);
this.smooth = param.DynamicImage;
};
})();
|