mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-09-04 20:58:03 +00:00
17 lines
313 B
Haxe
17 lines
313 B
Haxe
|
package funkin.ui.transition.stickers;
|
||
|
|
||
|
import funkin.graphics.FunkinSprite;
|
||
|
|
||
|
class StickerSprite extends FunkinSprite
|
||
|
{
|
||
|
public var timing:Float = 0;
|
||
|
|
||
|
public function new(x:Float, y:Float, filePath:String):Void
|
||
|
{
|
||
|
super(x, y);
|
||
|
loadTexture(filePath);
|
||
|
updateHitbox();
|
||
|
scrollFactor.set();
|
||
|
}
|
||
|
}
|