new chart editor, sm file support, bpm changes, and scroll speed changes.
This commit is contained in:
@ -11,6 +11,19 @@ class SMMeasure
|
||||
{
|
||||
_measure = measureData;
|
||||
notes = [];
|
||||
|
||||
// 0 = no note
|
||||
// 1 = normal note
|
||||
// 2 = head of sustain
|
||||
// 3 = tail of sustain
|
||||
|
||||
for(i in measureData)
|
||||
{
|
||||
for (ii in 0...i.length)
|
||||
{
|
||||
notes.push(new SMNote(i.split('')[ii],ii));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#end
|
Reference in New Issue
Block a user