Skip to content

Commit 884d241

Browse files
committed
imma do a backflip
1 parent eca0370 commit 884d241

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

setup/windows.bat

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,18 @@ haxelib install haxe-concurrent 5.1.3
2020
haxelib install actuate 1.9.0
2121
haxelib install flixel-ui 2.6.1
2222
haxelib install hscript 2.5.0
23+
haxelib install noisehx
2324
haxelib set lime 8.1.2
2425
haxelib set openfl 9.3.3
2526
haxelib git flxanimate https://github.com/Dot-Stuff/flxanimate 768740a56b26aa0c072720e0d1236b94afe68e3e
2627
haxelib git linc_luajit https://github.com/superpowers04/linc_luajit 1906c4a96f6bb6df66562b3f24c62f4c5bba14a7
27-
haxelib git funkin.vis https://github.com/FunkinCrew/funkVis 22b1ce089dd924f15cdc4632397ef3504d464e90
28+
haxelib git funkin.vis https://github.com/beihu235/funkVis-FrequencyFixed
2829
haxelib git grig.audio https://gitlab.com/haxe-grig/grig.audio.git cbf91e2180fd2e374924fe74844086aab7891666
2930
haxelib git haxeui-core https://github.com/haxeui/haxeui-core 51c23588614397089a5ce182cddea729f0be6fa0
3031
haxelib git haxeui-flixel https://github.com/haxeui/haxeui-flixel da27e833947f32ef007ed11f523aa5524f5a5d54
3132
haxelib git flixel-text-input https://github.com/FunkinCrew/flixel-text-input 951a0103a17bfa55eed86703ce50b4fb0d7590bc
3233
haxelib git FlxPartialSound https://github.com/FunkinCrew/FlxPartialSound.git f986332ba5ab02abd386ce662578baf04904604a
34+
haxelib git moonchart https://github.com/MaybeMaru/moonchart
3335
haxelib git tentools https://github.com/TentaRJ/tentools.git
3436
haxelib git systools https://github.com/haya3218/systools
3537
haxelib run lime rebuild systools windows

source/backend/Paths.hx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,7 @@ class Paths
218218

219219
return new FlxRuntimeShader(
220220
fragFile==null ? null : File.getContent(fragPath),
221-
vertFile==null ? null : File.getContent(vertPath),
222-
//version
223-
);
221+
vertFile==null ? null : File.getContent(vertPath));
224222
}catch(e:Dynamic){
225223
trace("Shader compilation error:" + e.message);
226224
}

source/backend/TransitionState.hx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,8 @@ class TransitionState {
499499
CppAPI.setWindowOppacity(num);
500500
});
501501
#end
502-
case 'transparent close': var psPause = states.PlayState.instance?.paused;
502+
case 'transparent close':
503+
var psPause = states.PlayState.instance?.paused;
503504
if (FlxG.sound.music != null && FlxG.sound.music.playing)
504505
{
505506
try {

0 commit comments

Comments
 (0)