1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-21 01:28:55 +00:00
Funkin/source/shaderslmfao/WaveShader.hx

23 lines
347 B
Haxe
Raw Normal View History

2021-09-08 22:10:06 +00:00
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();
}
}