waterdynwave.fp

来自「这是整套横扫千军3D版游戏的源码」· FP 代码 · 共 39 行

FP
39
字号
!!ARBfp1.0
TEMP temp;
TEMP old,midFlow,flow1,flow2,flow3,flow4,flow,backgroundWave;

TEX old, fragment.texcoord[0], texture[0], 2D;
TEX midFlow, fragment.texcoord[1], texture[1], 2D;
TEX flow1, fragment.texcoord[2], texture[2], 2D;
TEX flow2, fragment.texcoord[3], texture[3], 2D;
TEX flow3, fragment.texcoord[4], texture[4], 2D;
TEX flow4, fragment.texcoord[5], texture[5], 2D;
TEX backgroundWave, fragment.texcoord[6], texture[6], 2D;

SUB old.x, old.x, old.z;

DP4 temp.x, midFlow,{1,1,1,1};
SUB old.x, old.x, temp.x;

MOV flow.x, flow1.x;
MOV flow.y, flow2.y;
MOV flow.z, flow3.z;
MOV flow.w, flow4.w;

DP4 temp.x, flow,{1,1,1,1};
ADD old.x, old.x, temp.x;

SUB temp, midFlow, flow;
DP4 temp.x, temp, temp;

MAD old.y, temp.x, 0.2, old.y;
MUL_SAT old.y, old.y, 0.99;

MIN temp.x, old.w, 2;
MUL_SAT temp.x, temp.x, 0.2;

LRP old.x, 0.995, old.x, backgroundWave.z;
LRP old.x, temp.x, -old.w, old.x;

MUL result.color, old, {1,1,0,0};
END

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?