Skip to content

Commit

Permalink
新增参数-3
Browse files Browse the repository at this point in the history
  • Loading branch information
HBcao233 committed Jan 19, 2024
1 parent 5960e46 commit 2748fe8
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions docs/.vitepress/components/FromTojson.vue
Original file line number Diff line number Diff line change
Expand Up @@ -459,10 +459,10 @@
['SpeedSlowDown', '速度减缓'],
['SpeedSlowDelay', '速度减缓延迟'],
['TipsAID', '初始化弹幕ID'],
['HitAID', '命中释放弹幕ID'],
['HitAudio', '命中声音文件路径'],
['InitAudio', '初始化声音文件路径'],
['TimeAudio', '持续声音文件路径'],
['HitAID', '命中释放弹幕ID'],
]">
<el-input class="input-1" v-model.number="WSAMMO_Parameter[i[0]]" :placeholder="i[0]"
oninput="this.value = this.value.replace(/[^0-9]/g, '');" @input="generateOutput" clearable
Expand All @@ -471,14 +471,22 @@

<el-form-item :label="i[1]" class="labeldiv workspace" v-for="i in [
['HitANum', '命中释放弹幕数量'],
['HitAV', '击中声音大小', 0, 100],
['TimeAV', '持续声音大小', 0, 100],
['FollowLV', '追踪等级'],
['FollowInterval', '追踪间隔'],
]">
<el-input-number class="input-1" v-model.number="WSAMMO_Parameter[i[0]]"
:min="i[2]" :max="i[3]" @input="generateOutput" />
@input="generateOutput" />
</el-form-item>

<client-only>
<el-form-item :label="i[1]" class="labeldiv workspace" v-for="i in [
['HitAV', '命中声音大小'],
['TimeAV', '持续声音大小'],
]">
<el-slider v-model="WSITEM_Parameter[i[0]]" :min="0" :max="100"
@input="generateOutput" style="width:100%" />
</el-form-item>
</client-only>

<el-form-item class="labeldiv el-from-item">
<el-label for="from">光照颜色</el-label>
Expand Down

0 comments on commit 2748fe8

Please sign in to comment.