1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-08-20 07:25:59 +00:00
Funkin/source/funkin/shaderslmfao/WaveShader.hx
2023-01-22 22:25:45 -05:00

23 lines
360 B
Haxe

package funkin.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();
}
}