-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.yaml
More file actions
67 lines (65 loc) · 1.81 KB
/
schema.yaml
File metadata and controls
67 lines (65 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# ブロックタイプ定義ファイル
# このファイルでカスタムブロックタイプを定義できます
# 注意: 「dialogue(セリフ)」と「narrative(地の文)」は標準定義として常に含まれます
block_types:
command:
label: "コマンド"
description: "シナリオスクリプトの演出効果"
requires_text: false
parameters:
commandType:
type: "select"
label: "コマンドタイプ"
default: "screen"
required: true
options:
- value: "screen"
label: "画面演出"
- value: "sound"
label: "音響効果"
- value: "transition"
label: "画面転換"
- value: "wait"
label: "待機"
- value: "system"
label: "システム"
- value: "custom"
label: "カスタム"
effect:
type: "select"
label: "効果"
default: "shake"
required: true
options:
- value: "shake"
label: "画面揺れ"
- value: "flash"
label: "フラッシュ"
- value: "fade"
label: "フェード"
- value: "zoom"
label: "ズーム"
- value: "blur"
label: "ブラー"
- value: "none"
label: "なし"
intensity:
type: "select"
label: "強度"
default: "normal"
required: true
options:
- value: "weak"
label: "弱"
- value: "normal"
label: "中"
- value: "strong"
label: "強"
duration:
type: "number"
label: "継続時間"
placeholder: "秒数"
default: 1.0
required: true
min: 0
step: 0.1