mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-04 13:54:22 +00:00
44 lines
774 B
Haxe
44 lines
774 B
Haxe
package funkin;
|
|
|
|
import flixel.FlxCamera;
|
|
import flixel.FlxSprite;
|
|
import flixel.graphics.tile.FlxDrawBaseItem;
|
|
import openfl.display.MovieClip;
|
|
|
|
class FlxSwf extends FlxSprite
|
|
{
|
|
public var swf:MovieClip;
|
|
|
|
public function new()
|
|
{
|
|
super();
|
|
}
|
|
|
|
override function draw()
|
|
{
|
|
for (camera in cameras)
|
|
{
|
|
if (!camera.visible || !camera.exists) continue;
|
|
|
|
getScreenPosition(_point, camera).subtractPoint(offset);
|
|
// assume no render blit for now
|
|
// use camera.canvas
|
|
// camera.canvas.graphics.
|
|
}
|
|
}
|
|
}
|
|
|
|
class FlxDrawSwfItem extends FlxDrawBaseItem<FlxDrawSwfItem>
|
|
{
|
|
public function new()
|
|
{
|
|
super();
|
|
type = FlxDrawItemType.TILES;
|
|
}
|
|
|
|
override function render(camera:FlxCamera)
|
|
{
|
|
super.render(camera);
|
|
}
|
|
}
|