保存ファイルに表示されるゲームのタイトルをカスタマイズできるプラグイン – HIME_SaveTitle.js

タイトル
- allows you to customize the title of the game that is displayed in the save file.
作者名
ヘルプ
-------------------------------------------------------------------------------
== Description ==

By default, when you save a game, the title that is used is the title of
the game.

However, this isn't very useful. It would be better to show something more
relevant to the actual save file, such as a map location, or the current
chapter, or anything else.

With this plugin, you can use events to determine what the current save title
should be.

== Terms of Use ==

- Free for use in non-commercial projects with credits
- Contact me for commercial use

== Change Log ==

1.2 - Jan 27, 2016
Support for both literal and formula save titles
1.1 - Jan 11, 2016
save title supports formulas now
1.0 - Dec 31, 2015
initial release

== Usage ==

To set the save title, use the script call

TH.setSaveTitle( TITLE )

Where TITLE is any valid string. For example, if you want to set the save
title to "Chapter 1" you can write

TH.setSaveTitle("Chapter 1")

Then when you save the game, that will be the title that is shown.

-- Formula Save Titles --

By default, all save titles are saved as literal strings.
Whatever you write will be shown as the title.

However, the save title can be a formula. For example, if you want the save
title to be the name of the map that you're on, instead of having to set the
title everytime you enter a new map, you can write

TH.setSaveTitle("$gameMap.displayName()", true);

This will tell the game that you want to use a formula as the title.
And then the game will automatically ask for the map's name when it's saving.

-------------------------------------------------------------------------------
パラメータ
title Save Title
version 1.2
date Jan 27, 2015
filename HIME_SaveTitle.js
url http://himeworks.com/2015/12/save-title/

If you enjoy my work, consider supporting me on Patreon!

https://www.patreon.com/himeworks

If you have any questions or concerns, you can contact me at any of
the following sites:

Main Website: http://himeworks.com
Facebook: https://www.facebook.com/himeworkscom/
Twitter: https://twitter.com/HimeWorks
Youtube: https://www.youtube.com/c/HimeWorks
Tumblr: http://himeworks.tumblr.com/

-------------------------------------------------------------------------------
ライセンス表記
- Free for use in non-commercial projects with credits
- Contact me for commercial use

紹介ページ http://himeworks.com/2015/12/save-title/