1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-17 15:38:52 +00:00

lol stream stuff lol

This commit is contained in:
Cameron Taylor 2021-09-08 18:10:06 -04:00
parent 8e8b121663
commit 144a526f1c
2 changed files with 23 additions and 1 deletions

View file

@ -98,7 +98,7 @@ class FreeplayState extends MusicBeatState
if (StoryMenuState.weekUnlocked[7] || isDebug)
addWeek(['Ugh', 'Guns', 'Stress'], 7, ['tankman']);
addWeek(["Darnell"], 8, ['darnell']);
// addWeek(["Darnell"], 8, ['darnell']);
// LOAD MUSIC

View file

@ -0,0 +1,22 @@
package shaderslmfao;
import flixel.system.FlxAssets.FlxShader;
class WaveShader extends FlxShader
{
@:glFragmentSource('
#pragma header
void main()
{
vec4 color = flixel_texture2D(bitmap, openfl_TextureCoordv);
gl_FragColor = color;
}
')
public function new()
{
super();
}
}