スキーマ
{
"type": "object",
"properties": {
"path": {
"type": "string",
"pattern": "\\.wproj$",
"description": "The path to the project WPROJ file. WAAPIをMacで使う場合は、 \\ref waapi_path_on_mac を参照してください。"
},
"onUpgrade": {
"type": "string",
"enum": [
"migrate",
"fail"
],
"description": "(DEPRECATED) The action to be executed when opening a project that needs to be upgraded. 注:これは非推奨です。Please use onMigrationRequired instead."
},
"onMigrationRequired": {
"type": "string",
"enum": [
"migrate",
"fail"
],
"description": "The action to be executed when opening a project that needs to be migrated."
},
"bypassSave": {
"type": "boolean",
"description": "ユーザーに、現在のプロジェクトを保存するようにプロンプトすべきでない場合を、示します。デフォルトはtrueです。"
},
"autoCheckOutToSourceControl": {
"type": "boolean",
"description": "Determines if Wwise automatically performs a Checkout source control operation for affected work units and for the project. デフォルトはtrueです。"
}
},
"required": [
"path"
],
"additionalProperties": false
}