Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Commit

Permalink
Fix me GuineaPig
Browse files Browse the repository at this point in the history
  • Loading branch information
GuineaPigUuhh committed Feb 15, 2024
1 parent 8af42d6 commit 8a1db69
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
16 changes: 11 additions & 5 deletions Project.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@
<project>
<!-- _________________________ Application Settings _________________________ -->

<app title="Friday Night Funkin'- Null Engine" packageName="com.guineapiguuhh.funkin" package="com.guineapiguuhh.funkin" main="Main" version="0.2.8" company="GuineaPigUuhh" />
<app
title="Friday Night Funkin'- Null Engine"
version="0.2.8"
file="NullEngine"

<app file="NullEngine_Windows" if="windows"/>
<app file="NullEngine_Linux" if="linux"/>
<app file="NullEngine_Mac" if="mac"/>
main="Main"

packageName="com.guineapiguuhh.nullengine"
package="com.guineapiguuhh.nullengine"
company="GuineaPigUuhh"
/>

<!--Switch Export with Unique ApplicationID and Icon-->
<set name="APP_ID" value="0x0100f6c013bbc000" />
Expand Down Expand Up @@ -52,7 +58,7 @@
<assets path="assets/engine"/>
<assets path="assets/funkin"/>
<section if="MODS_ALLOWED">
<assets path="mods" embed="false" />
<assets path="mods" embed="false"/>
</section>

<classpath name="source" />
Expand Down
1 change: 1 addition & 0 deletions mods/base_game/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
among us
6 changes: 3 additions & 3 deletions source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import shaderslmfao.BuildingShaders.BuildingShader;
import shaderslmfao.BuildingShaders;
import shaderslmfao.ColorSwap;
import ui.PreferencesMenu;
import vlc.MP4Handler as VideoHandler; // Haxelib Hxcodec 2.5.1
import vlc.MP4Handler as FlxVideo; // Haxelib Hxcodec 2.5.1

using StringTools;

Expand Down Expand Up @@ -885,10 +885,10 @@ class PlayState extends MusicBeatState
inCutscene = true;

var video:FlxVideo = new FlxVideo();
video.playVideo(filepath);
video.playVideo(AssetsHelper.video(name));
video.finishCallback = function()
{
startAndEnd();
chooseEnding();
return;
}
#end
Expand Down

0 comments on commit 8a1db69

Please sign in to comment.