From 40a7030dfd007d7f7e0edc48ccbc589e24ed8219 Mon Sep 17 00:00:00 2001 From: CuckyDev Date: Mon, 2 Aug 2021 23:31:33 -0400 Subject: [PATCH] Delete SusClip.hx --- source/SusClip.hx | 48 ----------------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 source/SusClip.hx diff --git a/source/SusClip.hx b/source/SusClip.hx deleted file mode 100644 index 3523934..0000000 --- a/source/SusClip.hx +++ /dev/null @@ -1,48 +0,0 @@ -package; - -import flixel.FlxG; -import flixel.FlxSprite; -import flixel.graphics.frames.FlxAtlasFrames; -import flixel.math.FlxMath; -import flixel.util.FlxColor; - -import Note; - -class SusClip extends FlxSprite -{ - public var strumTime:Float = 0; - public var noteData:Int = 0; - public var mustPress:Bool = false; - public var noteYOff:Int = 0; - - public function new(note:Note) - { - super(); - - //Copy note data - strumTime = note.strumTime; - noteData = note.noteData; - mustPress = note.mustPress; - noteYOff = note.noteYOff; - - x = note.x; - y = note.y; - alpha = note.alpha; - loadGraphicFromSprite(note); - - angle = note.angle; - flipY = note.flipY; - clipRect = note.clipRect; - scale.copyFrom(note.scale); - scrollFactor.copyFrom(note.scrollFactor); - updateHitbox(); - } - - /* - override function update(elapsed:Float) - { - super.update(elapsed); - angle = modAngle + localAngle; - } - */ -} \ No newline at end of file