basic selection and keybinds for charter
This commit is contained in:
16
source/ChartingBox.hx
Normal file
16
source/ChartingBox.hx
Normal file
@@ -0,0 +1,16 @@
|
||||
import flixel.util.FlxColor;
|
||||
import flixel.FlxSprite;
|
||||
|
||||
class ChartingBox extends FlxSprite
|
||||
{
|
||||
public var connectedNote:Note;
|
||||
|
||||
public function new(x,y, originalNote:Note)
|
||||
{
|
||||
super(x,y);
|
||||
connectedNote = originalNote;
|
||||
|
||||
makeGraphic(40,40,FlxColor.fromRGB(173, 216, 230));
|
||||
alpha = 0.4;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user