Json global.rpgsave - hikipuro/rpgmakermv_ref GitHub Wiki

global.rpgsave

[JSONデータ一覧]

global.rpgsave の構造

  • ローカル環境: save/global.rpgsave に配置される
  • Web 環境: WebStorage の "RPG Global"
  • インデックス 0 の項目は null (1 から始まる)
  • 各要素は SavefileInfo の構造
[
  null,
  {
    "globalId": "RPGMV",
    "title": "ゲームタイトル",
    "characters": [
      ["Actor1", 0]
    ],
    "faces": [
      ["Actor1", 0]
    ],
    "playtime": "00:00:09",
    "timestamp": 1582522057755
  },
  .
  .
  .
]

関連項目