mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 14:24:28 +00:00
23 lines
360 B
Haxe
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();
|
|
}
|
|
}
|