mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-15 19:33:36 +00:00
35 lines
743 B
Haxe
35 lines
743 B
Haxe
package funkin.graphics.video;
|
|
|
|
#if hxCodec
|
|
import hxcodec.flixel.FlxVideoSprite;
|
|
|
|
/**
|
|
* Not to be confused with FlxVideo, this is a hxcodec based video class
|
|
* We override it simply to correct/control our volume easier.
|
|
*/
|
|
class FunkinVideoSprite extends FlxVideoSprite
|
|
{
|
|
public var volume(default, set):Float = 1;
|
|
|
|
public function new(x:Float = 0, y:Float = 0)
|
|
{
|
|
super(x, y);
|
|
|
|
set_volume(1);
|
|
}
|
|
|
|
override public function update(elapsed:Float):Void
|
|
{
|
|
super.update(elapsed);
|
|
set_volume(volume);
|
|
}
|
|
|
|
function set_volume(value:Float):Float
|
|
{
|
|
volume = value;
|
|
bitmap.volume = Std.int((FlxG.sound.muted ? 0 : 1) * (FlxG.sound.logToLinear(FlxG.sound.volume) * 100) * volume);
|
|
return volume;
|
|
}
|
|
}
|
|
#end
|