Skip to content

Commit

Permalink
config.yaml生成ついて、「利用する背景モデルのニコニ立体番号」「スタジオ内に持ち込む画像」の設定にもコメントを入れるようにした
Browse files Browse the repository at this point in the history
  • Loading branch information
esperecyan committed Oct 13, 2018
1 parent f242d72 commit 972034d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ VirtualCast/config.yaml
`VirtualCast.exe` があるフォルダに次のような `config.yaml` を置いておくと、

```yaml
niconico:
character_models: # 利用するVRMモデルのニコニ立体番号
niconico: # 利用するモデルのニコニ立体番号
character_models: # アバター (VRM)
- 32797 # ニコニ立体ちゃん (VRM) <https://3d.nicovideo.jp/works/td32797>
- 32947 # 【VRM】まついしゃちょー <https://3d.nicovideo.jp/works/td32947>
- 36346 # 【VRM】おの副社長 <http://3d.nicovideo.jp/works/td36346>
Expand Down
7 changes: 6 additions & 1 deletion バーチャルキャストを起動.js.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -288,13 +288,18 @@ if (inputFile) {

var timeoutOccured = false;
var yamlString = jsyaml.safeDump(configJSON, {indent: 4, lineWidth: -1})
.replace(/^niconico:\n {4}character_models:$/m, '$& # 利用するVRMモデルのニコニ立体番号')
.replace(/^niconico:$/m, '$& # 利用するモデルのニコニ立体番号')
.replace(/^ {4}character_models:$/m, '$& # アバター (VRM)')
.replace(/^ {4}background_models:$/m, '$& # 背景 (glTF)')
.replace(/^panorama:\n {4}urls:$/m, '$& # 背景で使うパノラマ画像のURL')
.replace(/^whiteboard:\n {4}urls:$/m, '$& # ホワイトボードで使用する画像のURL')
.replace(/^cue_card:\n {4}urls:$/m, '$& # カンペで使用する画像のURL')
.replace(/^mode: /m, '# 起動モード\n$&')
.replace(/^allow_direct_view: /m, '# ダイレクトビューモードで凸を受け入れるかどうか\n$&')
.replace(/^hide_camera_from_viewers: /m, '# カメラのオブジェクトを視聴者から隠すかどうか\n$&')
.replace(/^persistent_object:$/m, '$& # スタジオ内に持ち込む画像のURL')
.replace(/^ {4}image_urls:$/m, '$& # 視聴者に見せる')
.replace(/^ {4}hidden_image_urls:$/m, '$& # 視聴者に見せない')
.replace(/^ {8}- ([0-9]+)$/gm, function (match, number) {
var url = 'https://3d.nicovideo.jp/works/td' + number;
var comment = '<' + url + '>';
Expand Down

0 comments on commit 972034d

Please sign in to comment.