mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-27 01:55:52 -05:00
Fixes for FlxVideo
This commit is contained in:
parent
dddd050268
commit
7a47221250
1 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ class FlxVideo extends FlxBasic
|
|||
/**
|
||||
* Doesn't actually interact with Flixel shit, only just a pleasant to use class
|
||||
*/
|
||||
public function new(vidSrc:String)
|
||||
public function new(videoPath:String)
|
||||
{
|
||||
super();
|
||||
|
||||
|
@ -36,7 +36,7 @@ class FlxVideo extends FlxBasic
|
|||
netStream = new NetStream(netConnection);
|
||||
netStream.client = {onMetaData: client_onMetaData};
|
||||
netConnection.addEventListener(NetStatusEvent.NET_STATUS, netConnection_onNetStatus);
|
||||
netStream.play(Paths.file(vidSrc));
|
||||
netStream.play(videoPath);
|
||||
}
|
||||
|
||||
public function finishVideo():Void
|
||||
|
|
Loading…
Reference in a new issue