This file contains hidden or 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
| /* MIT License | |
| Copyright (c) 2025 Mt3Zz | |
| Released under the MIT license | |
| https://opensource.org/license/mit | |
| */ | |
| using UnityEngine; |
This file contains hidden or 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
| /* MIT License | |
| Copyright (c) 2022 David Tattersall | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |
This file contains hidden or 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
| //======================================================================== | |
| // RPG Maker MZ - Equip Scene Dress Up | |
| // Copyright (c) 2021 9rvLU | |
| // Released under the MIT license | |
| // https://opensource.org/licenses/mit-license.php | |
| //======================================================================== | |
| // [Update Histoty] | |
| // 1.2.3 2021/11/04 paramの順序を変更 | |
| // 1.2.2 2021/04/15 装備欄とマップで別のピクチャ設定を設定できるように変更 | |
| // 1.2.1 2021/04/15 プラグインコマンドにおいて表情差分を選択できるように変更 |
This file contains hidden or 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
| //======================================================================== | |
| // RPG Maker MZ - A S Key Common Event | |
| // Copyright (c) 2021 9rvLU | |
| // Released under the MIT license | |
| // https://opensource.org/licenses/mit-license.php | |
| //======================================================================== | |
| // [Update Histoty] | |
| // 1.0.0 2021/01/30 初版 | |
| /*:ja |
This file contains hidden or 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
| //======================================================================== | |
| // RPG Maker MZ - Equip Scene Dress Up | |
| // Copyright (c) 2021 9rvLU | |
| // Released under the MIT license | |
| // https://opensource.org/licenses/mit-license.php | |
| //======================================================================== | |
| // [Update Histoty] | |
| // 1.2.3 2021/11/04 paramの順序を変更 | |
| // 1.2.2 2021/04/15 装備欄とマップで別のピクチャ設定を設定できるように変更 | |
| // 1.2.1 2021/04/15 プラグインコマンドにおいて表情差分を選択できるように変更 |
This file contains hidden or 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
| //======================================================================== | |
| // RPG Maker MZ - Additional Status | |
| // Copyright (c) 2021 9rvLU | |
| // Released under the MIT license | |
| // https://opensource.org/licenses/mit-license.php | |
| //======================================================================== | |
| // [Update Histoty] | |
| // 1.0.0 2021/01/20 初版 | |
| // | |
| // [bug report] |
This file contains hidden or 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
| //======================================================================== | |
| // RPG Maker MZ - Overlapped Pictures Displayer | |
| // Copyright (c) 2021 9rvLU | |
| // Released under the MIT license | |
| // https://opensource.org/licenses/mit-license.php | |
| //======================================================================== | |
| // [Update Histoty] | |
| // 1.2.1 2021/01/16 MapImageSettings と MenuImageSettings にデフォルト値を設定 | |
| // 1.2.0 2021/01/15 プラグインコマンド「マップにピクチャを表示」を追加 | |
| // 1.1.0 2021/01/15 プラグインコマンド「ピクチャ素材変更」を追加 |
This file contains hidden or 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
| <!-- | |
| WordPress theme write の写経 | |
| 適宜コメントでの説明を追加 | |
| Write-書くためのテーマ | |
| http://demo.themegraphy.com/write-ja/ | |
| --> | |
| <!-- | |
| VSCode便利操作 | |
| c : コメントを追加 |
This file contains hidden or 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
| import numpy as np | |
| import cv2 | |
| from tkinter import filedialog | |
| import glob | |
| def Extractor(img): | |
| # cv2.imread によって読み込まれた画像を受け取って、線画にして保存する | |
| # imread の読み込みはモノクロ(2つ目の引数に0を指定)を推奨 |