1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-20 17:18:55 +00:00
Funkin/source/funkin/graphics/shaders/WaveShader.hx

23 lines
364 B
Haxe

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