INIT COMMIT

This commit is contained in:
Cameron Taylor
2020-10-02 23:50:15 -07:00
commit 303c9d14aa
21 changed files with 338 additions and 0 deletions

37
source/Note.hx Normal file
View File

@ -0,0 +1,37 @@
package;
import flixel.FlxSprite;
import flixel.util.FlxColor;
class Note extends FlxSprite
{
public var strumTime:Float = 0;
public var mustPress:Bool = false;
public var noteData:Int = 0;
public function new(strumTime:Float, noteData:Int)
{
super();
this.strumTime = strumTime;
this.noteData = noteData;
makeGraphic(50, 50);
switch (Math.abs(noteData))
{
case 1:
color = FlxColor.GREEN;
case 2:
color = FlxColor.RED;
case 3:
color = FlxColor.BLUE;
case 4:
color = FlxColor.PURPLE;
}
if (noteData < 0)
alpha = 0.6;
}
}