-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. 缩短了前倚音的时长。 2. 删除了过去的连音线1/8机制,但连音线连接相同音以延长时值的作用依然保留。 3. 加入了全局变量和局部变量的概念。全局变量作用于整首歌,局部变量作用于一个音轨,两者并存时局部变量优先。<>是变量声明符,其作用是改变一个变量的值。空音轨中的<>修改全局变量,实音轨中的<>修改局部变量。 4. 新增函数:<Dur:x>。用于改变之后音符的时值,缩小比例为2^x。例如<Dur:2>将之后的1更改为1__。原来的<1/1>的错误做法将不再使用。 5. 针对新功能修改了一系列歌曲。
- Loading branch information
Showing
8 changed files
with
166 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
//Banana - The Minions Song | ||
|
||
<100> | ||
<100><4/4><1=A> | ||
|
||
//Soprano | ||
{Violin}<1.0><4/4>0---|0---|0--2_3_|3_2_1.3_5_3_\ | ||
{Violin}<1.0>0---|0---|0--2_3_|3_2_1.3_5_3_\ | ||
3_2_1-2_3_|3_2_1-0|7,0--|0---\ | ||
<1/1>3-333---33333---|3-333-3333333-34|<2/2>444.444_4-|333.333_3_1_1_1_\ | ||
<1/1>22222-24-3434323|<2/2>311.111_1'-^|<4/4>%0--|| | ||
<Dur:2>3-333---33333---|3-333-3333333-34|<Dur:1>444.444_4-|333.333_3_1_1_1_\ | ||
<Dur:2>22222-24-3434323|<Dur:1>311.111_1'-^|<Dur:0>%0--|| | ||
|
||
//Alto | ||
{Violin}<0.6><4/4>0---|0---|<2/2>555.5-5_5-|555.5-5_5-\ | ||
666.666_6-|555.5-5_5-|<4/4>50--|<2/2>555.5-5_5-\ | ||
<1/1>1-111---11111---|1-111-1166553-21|<2/2>111.111_22|321.111_1_1_1_1_\ | ||
<1/1>22222-24-3434323|<2/2>111.111_1-^|<4/4>10--|| | ||
{Violin}<0.6>0---|0---|<Dur:1>555.5-5_5-|555.5-5_5-\ | ||
666.666_6-|555.5-5_5-|<Dur:0>50--|<Dur:1>555.5-5_5-\ | ||
<Dur:2>1-111---11111---|1-111-1166553-21|<Dur:1>111.111_22|321.111_1_1_1_1_\ | ||
<Dur:2>22222-24-3434323|<Dur:1>111.111_1-^|<Dur:0>10--|| | ||
|
||
//Tenor | ||
{Violin}<0.6><4/4>0---|<2/2>333.333_3-|333.333_3-|333.333_3-\ | ||
444.444_4-|333.333_3_1_1_1_|<1/1>22225,-%3-2323216,|<2/2>133.333_3-\ | ||
<1/1>1-111---11111---|1-111-1166553-21|<2/2>6,%%.%%%_%-|5,%%.%%%_%-\ | ||
<4/4>5,0--|<2/2>5,11.111_1-^|10--|| | ||
{Violin}<0.6>0---|<Dur:1>333.333_3-|333.333_3-|333.333_3-\ | ||
444.444_4-|333.333_3_1_1_1_|<Dur:2>22225,-%3-2323216,|<Dur:1>133.333_3-\ | ||
<Dur:2>1-111---11111---|1-111-1166553-21|<Dur:1>6,%%.%%%_%-|5,%%.%%%_%-\ | ||
<Dur:0>5,0--|<Dur:1>5,11.111_1-^|<Dur:0>10--|| | ||
|
||
//Bass | ||
{Violin}<0.8><2/2>111.111_1-|111.111_1-|111.111_11,|111.111_1-\ | ||
111.111_1-|111.111_1_1_1_1_|<1/1>22225,-%3-2323216,|<2/2>111.111_1-\ | ||
<2/2>1,3,5,6,7b,6,5,3,|1,3,5,6,7b,6,5,3,|4,6,123b216,|1,3,5,6,7b,6,5,3,\ | ||
<4/4>2,0--|<2/2>1,11.111_1,-^|%0--|| | ||
{Violin}<Dur:1>111.111_1-|111.111_1-|111.111_11,|111.111_1-\ | ||
111.111_1-|111.111_1_1_1_1_|<Dur:2>22225,-%3-2323216,|<Dur:1>111.111_1-\ | ||
<Dur:1>1,3,5,6,7b,6,5,3,|1,3,5,6,7b,6,5,3,|4,6,123b216,|1,3,5,6,7b,6,5,3,\ | ||
<Dur:0>2,0--|<Dur:1>1,11.111_1,-^|<Dur:0>%0--|| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
//Gate of Steiner | ||
//������ | ||
|
||
<72> | ||
|
||
{Piano}<1=bE><1.0><4/4>\ | ||
[35^1']77b7|[4#^1']77b7\ | ||
[34^1]767|[2^6]6[25#7]2'__1'__7__6__\ | ||
<1=bE'>[1^1'][7,^7][7,^7]b[7,^7]|[34#^1'][7,4^7][7b,4^7b][7b,4^7]\ | ||
[14^6]^%__6,__2__3__[6,1#6][5,5]|<1=bE>[463']..[346]..0_\ | ||
<Dur:1>2.6,_^%---0_2_6,_2_|3.6,_^%---0_3_6,_3_\ | ||
4-0_4_5_4_3-0_3_1'_6_^|<Dur:0>6-0-\ | ||
|| | ||
|
||
{Piano}<1=bE><0.6><4/4>\ | ||
<Dur:2>07,3507,3507,3507,35|07,34#07,34#07,34#07,34#\ | ||
06,3406,3406,3406,34|04#,2304#,233,7,35#[7,35#],---\ | ||
07,4#507,4#507,4#507,4#5|07,b34#07,b34#07,b34#07,b34#\ | ||
<Dur:0>0__6,__3__4__^4[1#34],[6,3],|0__6,,__1,__3,__^%0-\ | ||
<1=bE,>0_.[6,34]__-0_.%__-|0_.[6,13]__-0_.[6,13]__-\ | ||
0_.[245]__-0_.[7b,35]__-|0_.[6,34]_.5__6__0_.[1#35]__-\ | ||
|| | ||
|
||
{Viola}<1=bE,><0.2><4/4>\ | ||
3---|3---|2---|7,--0\ | ||
3333|3333|2-0-|2,..%..6_\ | ||
2,-2,-|6-6-|7b-1,-|2,-6,,-\ | ||
|| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
951be79
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This version should be ver 1.3.