Skip to content
This repository has been archived by the owner on Jun 26, 2021. It is now read-only.

Commit

Permalink
つくった
Browse files Browse the repository at this point in the history
  • Loading branch information
oatsu-gh committed Feb 18, 2021
1 parent 531290b commit 63d84ee
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# set_lyric_R

選択範囲をすっぴん休符にするUTAUプラグイン

## 用途

ハモリに作るときにどうぞ

## 開発環境

- Windows 10
- Python 3.8.7
- utaupy 1.11.3
3 changes: 3 additions & 0 deletions plugin.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
name=�I��͈͂������҂�x���ɂ���(&0)
execute=set_lyric_R.py
shell=use
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
utaupy >= 1.11.3
19 changes: 19 additions & 0 deletions set_lyric_R.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/usr/bin/env python3
# Copyright (c) 2020 oatsu
"""
選択範囲を休符にするプラグイン
"""
from utaupy.utauplugin import run


def set_lyric_R(plugin):
"""
選択範囲の歌詞を休符にしてすっぴん化する。
"""
for note in plugin.notes:
note.lyric = 'R'
note.suppin()


if __name__ == '__main__':
run(set_lyric_R)

0 comments on commit 63d84ee

Please sign in to comment.