1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-12 05:07:06 +00:00
Funkin/source/funkin/shaderslmfao/WaveShader.hx

23 lines
360 B
Haxe
Raw Normal View History

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