PC上のリソースファイルを追加してダウンロードすることができるプラグイン – RS_ResourceUpdate.js
- タイトル
- This plugin allows you to download additional resource files on PC.
- 作者名
- biud436様
- ヘルプ
- =============================================================================
Introduction
=============================================================================
This plugin enables your RPG Maker MV game to download additional resource
files from the internet during runtime on PC platforms. It provides a
versioning system that automatically checks if newer resources are available
and downloads them as needed.
=============================================================================
Features
=============================================================================
- Automatic version checking against a remote JSON database
- Downloads resources only when updates are available
- Progress tracking during download (visible in console)
- Supports downloading image files and other assets
- Works only on PC platforms (not mobile devices)
=============================================================================
Required JSON Structure
=============================================================================
The remote JSON file should be structured as follows:
{
"dbVersion": "0.1.2",
"data": {
"pictures": {
"src": "/img/pictures/",
"list": [
"https://example.com/path/to/image1.png",
"https://example.com/path/to/image2.png"
]
}
}
}
=============================================================================
How It Works
=============================================================================
1. When the game starts, the plugin checks the remote JSON file for version info
2. If the remote version is newer than the current version, it begins downloading
3. Files are downloaded to the appropriate folders in your game directory
4. Console messages display download progress and completion status
5. After successful download, the current version is updated
=============================================================================
Usage Notes
=============================================================================
- Resources are downloaded to the path specified in the JSON structure
- Progress is displayed in the console (F8)
- The plugin automatically runs during game boot; no manual activation required
- Requires internet connection to check for updates
- Works only on desktop platforms (Windows, macOS, Linux)
=============================================================================
Change Log
=============================================================================
2016.01.04 (v1.0.0) - First Release.
2018.12.01 (v1.0.1) - Fixed the bug that is not loaded files in RPG Maker MV v1.6.1 or more. - パラメータ
-
param URL_DB desc Please enter the url that has the version text. default https://github.com/biud436/MV/raw/master/Laboratory/DBVersion.json param Current Version desc Please enter the currently version. default 0.1.1 - ライセンス表記
- MIT License
Copyright (c) 2016 biud436
Free for commercial and non commercial use.
紹介ページ https://github.com/biud436/MV/blob/master/RS_ResourceUpdate.js